/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export * @interface DirectDebitBankAccount */ export interface DirectDebitBankAccount { /** * * @type {string} * @memberof DirectDebitBankAccount */ maskedBankAccountNumber?: string | null; /** * * @type {string} * @memberof DirectDebitBankAccount */ bankAccountHash?: string | null; /** * Mobile number of the customer registered to the partner channel * @type {string} * @memberof DirectDebitBankAccount */ mobileNumber?: string | null; /** * Identity number of the customer registered to the partner channel * @type {string} * @memberof DirectDebitBankAccount */ identityDocumentNumber?: string | null; } /** * Check if a given object implements the DirectDebitBankAccount interface. */ export declare function instanceOfDirectDebitBankAccount(value: object): boolean; export declare function DirectDebitBankAccountFromJSON(json: any): DirectDebitBankAccount; export declare function DirectDebitBankAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectDebitBankAccount; export declare function DirectDebitBankAccountToJSON(value?: DirectDebitBankAccount | null): any;