export default interface IBankAggregated {
    originBankName: null | string;
    customerIdentification: null | string;
    cpf: string;
    targetInstitution: string;
    deadline: number;
    expirationDay: number;
    status: string;
    isSynchronized: null | boolean;
}
