Overview
Summary
Contact
Donate
Imprint
Prompt for the
LiveChatMessageView
Please create a React-JS view called "LiveChatMessageView" for the fields of the LiveChatMessage entity. The LiveChatMessageView must contain the following fields: - name: CreatedAt type: DATE - name: Currency type: STRING - name: IsDeleted type: BOOL - name: LiveStream type: LiveStream - name: MessageText type: STRING - name: SuperChatAmount type: DOUBLE - name: User type: User The data source for the [User] select control should be loaded from the relative URL: "/UserService/user" (HTTP-GET) The data source for the [LiveStream] select control should be loaded from the relative URL: "/LiveStreamService/livestream" (HTTP-GET) An existing LiveChatMessage entity should be loaded from the relative URL: "/LiveStreamService/livechatmessage/{id}" (HTTP-GET) If a new LiveChatMessage entity has been created, the new entity should be posted to the relative URL: "/LiveStreamService/livechatmessage" (HTTP-POST) If an existing LiveChatMessage entity has been updated, the modified entity should be sent to the relative URL: "/LiveStreamService/livechatmessage/{id}" (HTTP-PUT) If an existing LiveChatMessage entity has to be deleted, the following relative URL should be called: "/LiveStreamService/livechatmessage/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint