| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Country | Country | CountryModule | PayPal |
| (2) Invoice | Invoice | CurrencyModule | PayPal |
| (3) Merchant | Merchant | MerchantModule | PayPal |
| (4) MerchantAddress | MerchantAddress | MerchantModule | PayPal |
| (5) MerchantApiCredential | MerchantApiCredential | MerchantModule | PayPal |
| (6) MerchantBusinessInfo | MerchantBusinessInfo | MerchantModule | PayPal |
| (7) MerchantWebsite | MerchantWebsite | MerchantModule | PayPal |
| (8) SecurityIncident | SecurityIncident | RegionModule | PayPal |
| (9) SubscriptionPlan | SubscriptionPlan | SubscriptionModule | PayPal |
| (10) Transaction | Transaction | TransactionModule | PayPal |
| (11) UserAccount | UserAccount | UserAccountModule | PayPal |
| Merchant | MerchantModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Category | STRING | Merchant | ||
| (2) CreatedAt | DATE | Merchant | ||
| (3) DisplayName | STRING | Merchant | ||
| (4) LegalName | STRING | Merchant | ||
| (5) Status | STRING | Merchant | ||
| (6) UserAccount | LONG | Merchant | UserAccount | UserAccountModule |
| (7) WebsiteUrl | STRING | Merchant |
Example:
final Merchant merchant = (Merchant) invokeModule(MERCHANT_MODULE + "/merchant/" + id, Merchant.class);| MerchantAddress | MerchantModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) AddressType | STRING | MerchantAddress | ||
| (2) City | STRING | MerchantAddress | ||
| (3) Country | LONG | MerchantAddress | Country | CountryModule |
| (4) Line1 | STRING | MerchantAddress | ||
| (5) Line2 | STRING | MerchantAddress | ||
| (6) Merchant | LONG | MerchantAddress | Merchant | MerchantModule |
| (7) PostalCode | STRING | MerchantAddress | ||
| (8) State | STRING | MerchantAddress |
Example:
final MerchantAddress merchantaddress = (MerchantAddress) invokeModule(MERCHANT_MODULE + "/merchantaddress/" + id, MerchantAddress.class);| MerchantApiCredential | MerchantModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) ClientId | STRING | MerchantApiCredential | ||
| (2) ClientSecretHash | STRING | MerchantApiCredential | ||
| (3) CreatedAt | DATE | MerchantApiCredential | ||
| (4) LastUsedAt | DATE | MerchantApiCredential | ||
| (5) Merchant | LONG | MerchantApiCredential | Merchant | MerchantModule |
| (6) Status | STRING | MerchantApiCredential |
Example:
final MerchantApiCredential merchantapicredential = (MerchantApiCredential) invokeModule(MERCHANT_MODULE + "/merchantapicredential/" + id, MerchantApiCredential.class);| MerchantBusinessInfo | MerchantModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) EstablishedAt | DATE | MerchantBusinessInfo | ||
| (2) IndustryCode | STRING | MerchantBusinessInfo | ||
| (3) Merchant | LONG | MerchantBusinessInfo | Merchant | MerchantModule |
| (4) RegistrationNumber | STRING | MerchantBusinessInfo | ||
| (5) TaxNumber | STRING | MerchantBusinessInfo |
Example:
final MerchantBusinessInfo merchantbusinessinfo = (MerchantBusinessInfo) invokeModule(MERCHANT_MODULE + "/merchantbusinessinfo/" + id, MerchantBusinessInfo.class);| MerchantWebsite | MerchantModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Merchant | LONG | MerchantWebsite | Merchant | MerchantModule |
| (2) Status | STRING | MerchantWebsite | ||
| (3) Url | STRING | MerchantWebsite | ||
| (4) VerifiedAt | DATE | MerchantWebsite |
Example:
final MerchantWebsite merchantwebsite = (MerchantWebsite) invokeModule(MERCHANT_MODULE + "/merchantwebsite/" + id, MerchantWebsite.class);| Contact | Donate | Imprint |