Overview
Summary
Contact
Donate
Imprint
Prompt for the
BankAccountView
Please create a React-JS view called "BankAccountView" for the fields of the BankAccount entity. The BankAccountView must contain the following fields: - name: AccountNumberMasked type: STRING - name: BankName type: STRING - name: Bic type: STRING - name: Country type: Country - name: FundingSource type: FundingSource - name: Iban type: STRING - name: VerifiedAt type: DATE The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) The data source for the [FundingSource] select control should be loaded from the relative URL: "/FundingSourceService/fundingsource" (HTTP-GET) An existing BankAccount entity should be loaded from the relative URL: "/CountryService/bankaccount/{id}" (HTTP-GET) If a new BankAccount entity has been created, the new entity should be posted to the relative URL: "/CountryService/bankaccount" (HTTP-POST) If an existing BankAccount entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/bankaccount/{id}" (HTTP-PUT) If an existing BankAccount entity has to be deleted, the following relative URL should be called: "/CountryService/bankaccount/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint