Overview
Summary
Contact
Donate
Imprint
Prompt for the
PaymentAccountView
Please create a React-JS view called "PaymentAccountView" for the fields of the PaymentAccount entity. The PaymentAccountView must contain the following fields: - name: CreatedAt type: DATE - name: CurrencyCode type: STRING - name: IsEnabled type: BOOL - name: KycStatus type: STRING - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount - name: WalletAddress type: STRING The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing PaymentAccount entity should be loaded from the relative URL: "/PaymentAccountService/paymentaccount/{id}" (HTTP-GET) If a new PaymentAccount entity has been created, the new entity should be posted to the relative URL: "/PaymentAccountService/paymentaccount" (HTTP-POST) If an existing PaymentAccount entity has been updated, the modified entity should be sent to the relative URL: "/PaymentAccountService/paymentaccount/{id}" (HTTP-PUT) If an existing PaymentAccount entity has to be deleted, the following relative URL should be called: "/PaymentAccountService/paymentaccount/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PaymentTransaction columns: - column: CreatedAt - column: PaymentAccountFrom - column: TransactionHash - column: PaymentAccountTo - column: Conversation - column: AmountMinorUnits - column: CompletedAt - column: CurrencyCode - column: Status The table should have the title "PaymentTransactions" und the data must be loaded from the server with the following relative URL: "/PaymentAccountService/paymenttransaction/paymentaccountfrom/{id}" Add a HTML table to the view with the following PaymentTransaction columns: - column: CreatedAt - column: PaymentAccountFrom - column: TransactionHash - column: PaymentAccountTo - column: Conversation - column: AmountMinorUnits - column: CompletedAt - column: CurrencyCode - column: Status The table should have the title "PaymentTransactions" und the data must be loaded from the server with the following relative URL: "/PaymentAccountService/paymenttransaction/paymentaccountto/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint