Overview
Summary
Contact
Donate
Imprint
Prompt for the
PayoutItemView
Please create a React-JS view called "PayoutItemView" for the fields of the PayoutItem entity. The PayoutItemView must contain the following fields: - name: Amount type: DOUBLE - name: Payout type: Payout - name: Reference type: STRING - name: Status type: STRING - name: Transaction type: Transaction The data source for the [Transaction] select control should be loaded from the relative URL: "/TransactionService/transaction" (HTTP-GET) The data source for the [Payout] select control should be loaded from the relative URL: "/UserAccountService/payout" (HTTP-GET) An existing PayoutItem entity should be loaded from the relative URL: "/TransactionService/payoutitem/{id}" (HTTP-GET) If a new PayoutItem entity has been created, the new entity should be posted to the relative URL: "/TransactionService/payoutitem" (HTTP-POST) If an existing PayoutItem entity has been updated, the modified entity should be sent to the relative URL: "/TransactionService/payoutitem/{id}" (HTTP-PUT) If an existing PayoutItem entity has to be deleted, the following relative URL should be called: "/TransactionService/payoutitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint