export interface ITransactionPayer {
    bank: string | null;
    account: string | null;
    branch: string | null;
    name: string | null;
    doc: string | null;
}
