import { BankAccountStateEnum } from './BankAccountStateEnum';
import { IconData } from './IconData';
/** Credit card information */
export interface BankAccount {
    /**  */
    bic: string;
    /**  */
    creationDate: string;
    /** This credit card is the default payment mean? */
    defaultPaymentMean: boolean;
    /** Custom description of this bank account */
    description?: string;
    /**  */
    iban: string;
    /** Payment method type icon */
    icon?: IconData;
    /**  */
    id: number;
    /**  */
    mandateSignatureDate?: string;
    /** Bank account owner's address */
    ownerAddress: string;
    /** Bank account owner's name */
    ownerName: string;
    /** Bank account state */
    state: BankAccountStateEnum;
    /**  */
    uniqueReference: string;
    /**  */
    validationDocumentLink?: string;
}
//# sourceMappingURL=BankAccount.d.ts.map