Overview
Summary
Contact
Donate
Imprint
Prompt for the
SupportCaseView
Please create a React-JS view called "SupportCaseView" for the fields of the SupportCase entity. The SupportCaseView must contain the following fields: - name: Channel type: STRING - name: ClosedAt type: DATE - name: Description type: STRING - name: Dispute type: Dispute - name: OpenedAt type: DATE - name: SecurityIncident type: SecurityIncident - name: Status type: STRING - name: Subject type: STRING - name: Transaction type: Transaction - name: UserAccount type: UserAccount The data source for the [Transaction] select control should be loaded from the relative URL: "/TransactionService/transaction" (HTTP-GET) The data source for the [SecurityIncident] select control should be loaded from the relative URL: "/RegionService/securityincident" (HTTP-GET) The data source for the [Dispute] select control should be loaded from the relative URL: "/FundingSourceService/dispute" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing SupportCase entity should be loaded from the relative URL: "/UserAccountService/supportcase/{id}" (HTTP-GET) If a new SupportCase entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/supportcase" (HTTP-POST) If an existing SupportCase entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/supportcase/{id}" (HTTP-PUT) If an existing SupportCase entity has to be deleted, the following relative URL should be called: "/UserAccountService/supportcase/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint