| Contact | Donate | Imprint |
| ComplianceCheck | UserAccountModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) CheckType | STRING | ComplianceCheck | ||
| (2) Details | STRING | ComplianceCheck | ||
| (3) PerformedAt | DATE | ComplianceCheck | ||
| (4) Result | STRING | ComplianceCheck | ||
| (5) SanctionListEntry | LONG | ComplianceCheck | SanctionListEntry | CountryModule |
| (6) Status | STRING | ComplianceCheck | ||
| (7) Transaction | LONG | ComplianceCheck | Transaction | TransactionModule |
| (8) UserAccount | LONG | ComplianceCheck | UserAccount | UserAccountModule |
Example:
final ComplianceCheck compliancecheck = (ComplianceCheck) invokeModule(USER_ACCOUNT_MODULE + "/compliancecheck/" + id, ComplianceCheck.class);| Payout | UserAccountModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) CompletedAt | DATE | Payout | ||
| (2) CreatedAt | DATE | Payout | ||
| (3) Currency | LONG | Payout | Currency | CurrencyModule |
| (4) FundingSource | LONG | Payout | FundingSource | FundingSourceModule |
| (5) Status | STRING | Payout | ||
| (6) TotalAmount | DOUBLE | Payout | ||
| (7) UserAccount | LONG | Payout | UserAccount | UserAccountModule |
Example:
final Payout payout = (Payout) invokeModule(USER_ACCOUNT_MODULE + "/payout/" + id, Payout.class);| Refund | UserAccountModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Amount | DOUBLE | Refund | ||
| (2) CompletedAt | DATE | Refund | ||
| (3) CreatedAt | DATE | Refund | ||
| (4) Currency | LONG | Refund | Currency | CurrencyModule |
| (5) Reason | STRING | Refund | ||
| (6) Status | STRING | Refund | ||
| (7) Transaction | LONG | Refund | Transaction | TransactionModule |
| (8) UserAccount | LONG | Refund | UserAccount | UserAccountModule |
Example:
final Refund refund = (Refund) invokeModule(USER_ACCOUNT_MODULE + "/refund/" + id, Refund.class);| SupportCase | UserAccountModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Channel | STRING | SupportCase | ||
| (2) ClosedAt | DATE | SupportCase | ||
| (3) Description | STRING | SupportCase | ||
| (4) Dispute | LONG | SupportCase | Dispute | FundingSourceModule |
| (5) OpenedAt | DATE | SupportCase | ||
| (6) SecurityIncident | LONG | SupportCase | SecurityIncident | RegionModule |
| (7) Status | STRING | SupportCase | ||
| (8) Subject | STRING | SupportCase | ||
| (9) Transaction | LONG | SupportCase | Transaction | TransactionModule |
| (10) UserAccount | LONG | SupportCase | UserAccount | UserAccountModule |
Example:
final SupportCase supportcase = (SupportCase) invokeModule(USER_ACCOUNT_MODULE + "/supportcase/" + id, SupportCase.class);| UserAccount | UserAccountModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) AccountType | STRING | UserAccount | ||
| (2) ClosedAt | DATE | UserAccount | ||
| (3) CreatedAt | DATE | UserAccount | ||
| (4) PasswordHash | STRING | UserAccount | ||
| (5) PrimaryEmail | STRING | UserAccount | ||
| (6) Status | STRING | UserAccount |
Example:
final UserAccount useraccount = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + id, UserAccount.class);| Contact | Donate | Imprint |