Overview
Summary
Contact
Donate
Imprint
Prompt for the
MessageRecipientView
Please create a React-JS view called "MessageRecipientView" for the fields of the MessageRecipient entity. The MessageRecipientView must contain the following fields: - name: DeliveredAt type: DATE - name: DeliveryStatus type: STRING - name: Device type: Device - name: FailureReason type: STRING - name: Message type: Message - name: ReadAt type: DATE - name: RecipientUserAccount type: LONG The data source for the [Message] select control should be loaded from the relative URL: "/MessageService/message" (HTTP-GET) The data source for the [Device] select control should be loaded from the relative URL: "/MessageService/device" (HTTP-GET) An existing MessageRecipient entity should be loaded from the relative URL: "/MessageService/messagerecipient/{id}" (HTTP-GET) If a new MessageRecipient entity has been created, the new entity should be posted to the relative URL: "/MessageService/messagerecipient" (HTTP-POST) If an existing MessageRecipient entity has been updated, the modified entity should be sent to the relative URL: "/MessageService/messagerecipient/{id}" (HTTP-PUT) If an existing MessageRecipient entity has to be deleted, the following relative URL should be called: "/MessageService/messagerecipient/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint