| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) ChannelSubscription | ChannelSubscription | DrmSchemeModule | AmazonPrimeVideo |
| (2) Country | Country | TitleModule | AmazonPrimeVideo |
| (3) Device | Device | EpisodeModule | AmazonPrimeVideo |
| (4) Payment | Payment | UserModule | AmazonPrimeVideo |
| (5) PaymentMethod | PaymentMethod | UserModule | AmazonPrimeVideo |
| (6) Profile | Profile | ProfileModule | AmazonPrimeVideo |
| (7) Subscription | Subscription | SeasonModule | AmazonPrimeVideo |
| (8) User | User | UserModule | AmazonPrimeVideo |
| Payment | UserModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Amount | STRING | Payment | ||
| (2) Currency | STRING | Payment | ||
| (3) Description | STRING | Payment | ||
| (4) PaidAt | STRING | Payment | ||
| (5) PaymentMethod | LONG | Payment | PaymentMethod | UserModule |
| (6) Status | STRING | Payment | ||
| (7) Subscription | LONG | Payment | Subscription | SeasonModule |
| (8) User | LONG | Payment | User | UserModule |
Example:
final Payment payment = (Payment) invokeModule(USER_MODULE + "/payment/" + id, Payment.class);| PaymentMethod | UserModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) BillingCountry | LONG | PaymentMethod | Country | TitleModule |
| (2) CreatedAt | STRING | PaymentMethod | ||
| (3) ExpiryMonth | LONG | PaymentMethod | ||
| (4) ExpiryYear | LONG | PaymentMethod | ||
| (5) IsDefault | BOOL | PaymentMethod | ||
| (6) LastFour | STRING | PaymentMethod | ||
| (7) Provider | STRING | PaymentMethod | ||
| (8) Type | STRING | PaymentMethod | ||
| (9) User | LONG | PaymentMethod | User | UserModule |
Example:
final PaymentMethod paymentmethod = (PaymentMethod) invokeModule(USER_MODULE + "/paymentmethod/" + id, PaymentMethod.class);| User | UserModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | User | Country | TitleModule |
| (2) CreatedAt | STRING | User | ||
| (3) DisplayName | STRING | User | ||
| (4) Email | STRING | User | ||
| (5) PasswordHash | STRING | User | ||
| (6) Status | STRING | User |
Example:
final User user = (User) invokeModule(USER_MODULE + "/user/" + id, User.class);| Contact | Donate | Imprint |