export interface IDataUserBank { customer: Customer account: Account } export interface Customer { documentNumber: string documentType: string customerId: string fullName: string } export interface Account { accountId: string balance: string }