Overview
Summary
Contact
Donate
Imprint
Prompt for the
PaymentTransactionView
Please create a React-JS view called "PaymentTransactionView" for the fields of the PaymentTransaction entity. The PaymentTransactionView must contain the following fields: - name: AmountMinorUnits type: LONG - name: CompletedAt type: DATE - name: Conversation type: Conversation - name: CreatedAt type: DATE - name: CurrencyCode type: STRING - name: PaymentAccountFrom type: PaymentAccount - name: PaymentAccountTo type: PaymentAccount - name: Status type: STRING - name: TransactionHash type: STRING The data source for the [PaymentAccountFrom] select control should be loaded from the relative URL: "/PaymentAccountService/paymentaccount" (HTTP-GET) The data source for the [PaymentAccountTo] select control should be loaded from the relative URL: "/PaymentAccountService/paymentaccount" (HTTP-GET) The data source for the [Conversation] select control should be loaded from the relative URL: "/ConversationService/conversation" (HTTP-GET) An existing PaymentTransaction entity should be loaded from the relative URL: "/PaymentAccountService/paymenttransaction/{id}" (HTTP-GET) If a new PaymentTransaction entity has been created, the new entity should be posted to the relative URL: "/PaymentAccountService/paymenttransaction" (HTTP-POST) If an existing PaymentTransaction entity has been updated, the modified entity should be sent to the relative URL: "/PaymentAccountService/paymenttransaction/{id}" (HTTP-PUT) If an existing PaymentTransaction entity has to be deleted, the following relative URL should be called: "/PaymentAccountService/paymenttransaction/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint