| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Country | Country | CountryModule | PayPal |
| (2) ExchangeRate | ExchangeRate | RegionModule | PayPal |
| (3) Merchant | Merchant | MerchantModule | PayPal |
| (4) Region | Region | RegionModule | PayPal |
| (5) RegulatoryLicense | RegulatoryLicense | RegionModule | PayPal |
| (6) SecurityIncident | SecurityIncident | RegionModule | PayPal |
| (7) SupportCase | SupportCase | UserAccountModule | PayPal |
| (8) UserAccount | UserAccount | UserAccountModule | PayPal |
| ExchangeRate | RegionModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) EffectiveFrom | DATE | ExchangeRate | ||
| (2) EffectiveTo | DATE | ExchangeRate | ||
| (3) Rate | DOUBLE | ExchangeRate | ||
| (4) SourceCurrency | LONG | ExchangeRate | ||
| (5) TargetCurrency | LONG | ExchangeRate |
Example:
final ExchangeRate exchangerate = (ExchangeRate) invokeModule(REGION_MODULE + "/exchangerate/" + id, ExchangeRate.class);| Region | RegionModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | Region | ||
| (2) Name | STRING | Region |
Example:
final Region region = (Region) invokeModule(REGION_MODULE + "/region/" + id, Region.class);| RegulatoryLicense | RegionModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) AuthorityName | STRING | RegulatoryLicense | ||
| (2) Country | LONG | RegulatoryLicense | Country | CountryModule |
| (3) ExpiresAt | DATE | RegulatoryLicense | ||
| (4) IssuedAt | DATE | RegulatoryLicense | ||
| (5) LicenseNumber | STRING | RegulatoryLicense | ||
| (6) LicenseType | STRING | RegulatoryLicense | ||
| (7) Region | LONG | RegulatoryLicense | Region | RegionModule |
| (8) Status | STRING | RegulatoryLicense |
Example:
final RegulatoryLicense regulatorylicense = (RegulatoryLicense) invokeModule(REGION_MODULE + "/regulatorylicense/" + id, RegulatoryLicense.class);| SecurityIncident | RegionModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | SecurityIncident | ||
| (2) DetectedAt | DATE | SecurityIncident | ||
| (3) Merchant | LONG | SecurityIncident | Merchant | MerchantModule |
| (4) ResolvedAt | DATE | SecurityIncident | ||
| (5) Severity | STRING | SecurityIncident | ||
| (6) Type | STRING | SecurityIncident | ||
| (7) UserAccount | LONG | SecurityIncident | UserAccount | UserAccountModule |
Example:
final SecurityIncident securityincident = (SecurityIncident) invokeModule(REGION_MODULE + "/securityincident/" + id, SecurityIncident.class);| Contact | Donate | Imprint |