import { BankAccountTypes, CEFOperations } from '../enums'; import { BaseModel } from './BaseModel'; export interface BankAccount extends BaseModel { bankCode: string; agency: string; agencyDigit: string; account: string; accountDigit: string; type: BankAccountTypes; operation: CEFOperations; name: string; cpf: string; }