| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) DownloadLicense | DownloadLicense | SeasonModule | AmazonPrimeVideo |
| (2) Episode | Episode | EpisodeModule | AmazonPrimeVideo |
| (3) Payment | Payment | UserModule | AmazonPrimeVideo |
| (4) PlaybackSession | PlaybackSession | EpisodeModule | AmazonPrimeVideo |
| (5) Profile | Profile | ProfileModule | AmazonPrimeVideo |
| (6) Season | Season | SeasonModule | AmazonPrimeVideo |
| (7) Subscription | Subscription | SeasonModule | AmazonPrimeVideo |
| (8) SubscriptionPlan | SubscriptionPlan | SubscriptionPlanModule | AmazonPrimeVideo |
| (9) Title | Title | TitleModule | AmazonPrimeVideo |
| (10) User | User | UserModule | AmazonPrimeVideo |
| (11) WatchHistory | WatchHistory | ProfileModule | AmazonPrimeVideo |
| DownloadLicense | SeasonModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) DeviceLimit | LONG | DownloadLicense | ||
| (2) Episode | LONG | DownloadLicense | Episode | EpisodeModule |
| (3) ExpiresAt | STRING | DownloadLicense | ||
| (4) GrantedAt | STRING | DownloadLicense | ||
| (5) IsExpired | BOOL | DownloadLicense | ||
| (6) Profile | LONG | DownloadLicense | Profile | ProfileModule |
| (7) Season | LONG | DownloadLicense | Season | SeasonModule |
| (8) Title | LONG | DownloadLicense | Title | TitleModule |
Example:
final DownloadLicense downloadlicense = (DownloadLicense) invokeModule(SEASON_MODULE + "/downloadlicense/" + id, DownloadLicense.class);| Season | SeasonModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Name | STRING | Season | ||
| (2) ReleaseDate | DATE | Season | ||
| (3) SeasonNumber | LONG | Season | ||
| (4) Synopsis | STRING | Season | ||
| (5) Title | LONG | Season | Title | TitleModule |
Example:
final Season season = (Season) invokeModule(SEASON_MODULE + "/season/" + id, Season.class);| Subscription | SeasonModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) AutoRenew | BOOL | Subscription | ||
| (2) EndDate | DATE | Subscription | ||
| (3) StartDate | DATE | Subscription | ||
| (4) Status | STRING | Subscription | ||
| (5) SubscriptionPlan | LONG | Subscription | SubscriptionPlan | SubscriptionPlanModule |
| (6) User | LONG | Subscription | User | UserModule |
Example:
final Subscription subscription = (Subscription) invokeModule(SEASON_MODULE + "/subscription/" + id, Subscription.class);| Contact | Donate | Imprint |