Overview
Summary
Contact
Donate
Imprint
Prompt for the
SessionStateView
Please create a React-JS view called "SessionStateView" for the fields of the SessionState entity. The SessionStateView must contain the following fields: - name: CreatedAt type: DATE - name: LocalDevice type: LONG - name: RemoteDevice type: LONG - name: RemoteUserAccount type: LONG - name: SerializedState type: STRING - name: SessionIdentifier type: STRING - name: UpdatedAt type: DATE An existing SessionState entity should be loaded from the relative URL: "/PaymentAccountService/sessionstate/{id}" (HTTP-GET) If a new SessionState entity has been created, the new entity should be posted to the relative URL: "/PaymentAccountService/sessionstate" (HTTP-POST) If an existing SessionState entity has been updated, the modified entity should be sent to the relative URL: "/PaymentAccountService/sessionstate/{id}" (HTTP-PUT) If an existing SessionState entity has to be deleted, the following relative URL should be called: "/PaymentAccountService/sessionstate/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint