| Contact | Donate | Imprint |
| 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 |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /downloadlicense/title/{id} | findAllDownloadLicenseOfTitle(id) | SeasonModule | GET | Title DownloadLicense |
| (2) /downloadlicense/season/{id} | findAllDownloadLicenseOfSeason(id) | SeasonModule | GET | Season DownloadLicense |
| (3) /downloadlicense/profile/{id} | findAllDownloadLicenseOfProfile(id) | SeasonModule | GET | Profile DownloadLicense |
| (4) /downloadlicense | insertDownloadLicense(downloadlicense) | SeasonModule | POST | DownloadLicense |
| (5) /downloadlicense/{id} | updateDownloadLicenseById(downloadlicense) | SeasonModule | PUT | DownloadLicense |
| (6) /downloadlicense/episode/{id} | findAllDownloadLicenseOfEpisode(id) | SeasonModule | GET | Episode DownloadLicense |
| (7) /downloadlicense/{id} | deleteDownloadLicenseById(id) | SeasonModule | DELETE | DownloadLicense |
| (8) /downloadlicense | findAllDownloadLicense() | SeasonModule | GET | DownloadLicense |
| (9) /downloadlicense/{id} | findDownloadLicenseById(id) | SeasonModule | GET | DownloadLicense |
Example:
final DownloadLicense downloadlicense = (DownloadLicense) invokeModule(SEASON_MODULE + "/downloadlicense/" + id, DownloadLicense.class);| Contact | Donate | Imprint |