import IBankConsent from './IBankConsent';
export default interface IConsentDetail {
    consentId: string;
    originBankName: string;
    customerIdentification: string | null;
    cpf: string | null;
    bank: IBankConsent;
    deadline: number;
    status: string;
    isSynchronized: boolean;
    purpose: string;
}
