Overview
Summary
Contact
Donate
Imprint
Prompt for the
DownloadLicenseView
Please create a React-JS view called "DownloadLicenseView" for the fields of the DownloadLicense entity. The DownloadLicenseView must contain the following fields: - name: DeviceLimit type: LONG - name: Episode type: Episode - name: ExpiresAt type: STRING - name: GrantedAt type: STRING - name: IsExpired type: BOOL - name: Profile type: Profile - name: Season type: Season - name: Title type: Title The data source for the [Episode] select control should be loaded from the relative URL: "/EpisodeService/episode" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [Season] select control should be loaded from the relative URL: "/SeasonService/season" (HTTP-GET) The data source for the [Profile] select control should be loaded from the relative URL: "/ProfileService/profile" (HTTP-GET) An existing DownloadLicense entity should be loaded from the relative URL: "/SeasonService/downloadlicense/{id}" (HTTP-GET) If a new DownloadLicense entity has been created, the new entity should be posted to the relative URL: "/SeasonService/downloadlicense" (HTTP-POST) If an existing DownloadLicense entity has been updated, the modified entity should be sent to the relative URL: "/SeasonService/downloadlicense/{id}" (HTTP-PUT) If an existing DownloadLicense entity has to be deleted, the following relative URL should be called: "/SeasonService/downloadlicense/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint