Overview
Summary
Contact
Donate
Imprint
Prompt for the
ChargebackView
Please create a React-JS view called "ChargebackView" for the fields of the Chargeback entity. The ChargebackView must contain the following fields: - name: Amount type: DOUBLE - name: ClosedAt type: DATE - name: Currency type: Currency - name: OpenedAt type: DATE - name: ReasonCode type: STRING - name: Status 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 [Currency] select control should be loaded from the relative URL: "/CurrencyService/currency" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Chargeback entity should be loaded from the relative URL: "/UserDeviceService/chargeback/{id}" (HTTP-GET) If a new Chargeback entity has been created, the new entity should be posted to the relative URL: "/UserDeviceService/chargeback" (HTTP-POST) If an existing Chargeback entity has been updated, the modified entity should be sent to the relative URL: "/UserDeviceService/chargeback/{id}" (HTTP-PUT) If an existing Chargeback entity has to be deleted, the following relative URL should be called: "/UserDeviceService/chargeback/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint