| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) BankAccount | BankAccount | CountryModule | PayPal |
| (2) Country | Country | CountryModule | PayPal |
| (3) Dispute | Dispute | FundingSourceModule | PayPal |
| (4) FundingSource | FundingSource | FundingSourceModule | PayPal |
| (5) PaymentCard | PaymentCard | FundingSourceModule | PayPal |
| (6) PaymentMethod | PaymentMethod | SubscriptionModule | PayPal |
| (7) Payout | Payout | UserAccountModule | PayPal |
| (8) SupportCase | SupportCase | UserAccountModule | PayPal |
| (9) Transaction | Transaction | TransactionModule | PayPal |
| (10) UserAccount | UserAccount | UserAccountModule | PayPal |
| Dispute | FundingSourceModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) BuyerUserAccount | LONG | Dispute | ||
| (2) ClosedAt | DATE | Dispute | ||
| (3) OpenedAt | DATE | Dispute | ||
| (4) OpenedByUserAccount | LONG | Dispute | ||
| (5) Reason | STRING | Dispute | ||
| (6) Resolution | STRING | Dispute | ||
| (7) SellerUserAccount | LONG | Dispute | ||
| (8) Status | STRING | Dispute | ||
| (9) Transaction | LONG | Dispute | Transaction | TransactionModule |
| (10) Type | STRING | Dispute |
Example:
final Dispute dispute = (Dispute) invokeModule(FUNDING_SOURCE_MODULE + "/dispute/" + id, Dispute.class);| FundingSource | FundingSourceModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | FundingSource | ||
| (2) LastUsedAt | DATE | FundingSource | ||
| (3) Status | STRING | FundingSource | ||
| (4) Type | STRING | FundingSource | ||
| (5) UserAccount | LONG | FundingSource | UserAccount | UserAccountModule |
Example:
final FundingSource fundingsource = (FundingSource) invokeModule(FUNDING_SOURCE_MODULE + "/fundingsource/" + id, FundingSource.class);| PaymentCard | FundingSourceModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) CardholderName | STRING | PaymentCard | ||
| (2) CardNetwork | STRING | PaymentCard | ||
| (3) Country | LONG | PaymentCard | Country | CountryModule |
| (4) ExpiryMonth | INT | PaymentCard | ||
| (5) ExpiryYear | INT | PaymentCard | ||
| (6) FundingSource | LONG | PaymentCard | FundingSource | FundingSourceModule |
| (7) Last4 | STRING | PaymentCard | ||
| (8) VerifiedAt | DATE | PaymentCard |
Example:
final PaymentCard paymentcard = (PaymentCard) invokeModule(FUNDING_SOURCE_MODULE + "/paymentcard/" + id, PaymentCard.class);| Contact | Donate | Imprint |