Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlaybackSessionView
Please create a React-JS view called "PlaybackSessionView" for the fields of the PlaybackSession entity. The PlaybackSessionView must contain the following fields: - name: Device type: Device - name: EndedAt type: STRING - name: Episode type: Episode - name: IsLive type: BOOL - name: PlaybackType type: STRING - name: Profile type: Profile - name: Season type: Season - name: StartedAt type: STRING - 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 [Device] select control should be loaded from the relative URL: "/EpisodeService/device" (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 PlaybackSession entity should be loaded from the relative URL: "/EpisodeService/playbacksession/{id}" (HTTP-GET) If a new PlaybackSession entity has been created, the new entity should be posted to the relative URL: "/EpisodeService/playbacksession" (HTTP-POST) If an existing PlaybackSession entity has been updated, the modified entity should be sent to the relative URL: "/EpisodeService/playbacksession/{id}" (HTTP-PUT) If an existing PlaybackSession entity has to be deleted, the following relative URL should be called: "/EpisodeService/playbacksession/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint