interfacePaymentAccount
export interface PaymentAccount {
accountId: string;
accountName: string;
currency: Currency;
identifier: string;
description: string;
accountType: PaymentAccountType;
status: PaymentAccountStatus;
provider: PaymentProviderType;
amount: Money;
amountInBaseCurrency: Money;
availableAmount: Money;
availableAmountInBaseCurrency: Money;
identifiers: string[];
}