Overview
Summary
Contact
Donate
Imprint
Prompt for the
AccountBalanceView
Please create a React-JS view called "AccountBalanceView" for the fields of the AccountBalance entity. The AccountBalanceView must contain the following fields: - name: AvailableAmount type: DOUBLE - name: Currency type: Currency - name: LastUpdatedAt type: DATE - name: PendingAmount type: DOUBLE - name: UserAccount type: UserAccount 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 AccountBalance entity should be loaded from the relative URL: "/UserDeviceService/accountbalance/{id}" (HTTP-GET) If a new AccountBalance entity has been created, the new entity should be posted to the relative URL: "/UserDeviceService/accountbalance" (HTTP-POST) If an existing AccountBalance entity has been updated, the modified entity should be sent to the relative URL: "/UserDeviceService/accountbalance/{id}" (HTTP-PUT) If an existing AccountBalance entity has to be deleted, the following relative URL should be called: "/UserDeviceService/accountbalance/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint