/** * 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 */ /** * Direct Debit Bank Account Channel Properties * @export * @interface DirectDebitChannelPropertiesBankAccount */ export interface DirectDebitChannelPropertiesBankAccount { /** * * @type {string} * @memberof DirectDebitChannelPropertiesBankAccount */ successReturnUrl?: string; /** * * @type {string} * @memberof DirectDebitChannelPropertiesBankAccount */ failureReturnUrl?: string; /** * * @type {string} * @memberof DirectDebitChannelPropertiesBankAccount */ mobileNumber?: string; /** * * @type {string} * @memberof DirectDebitChannelPropertiesBankAccount */ identityDocumentNumber?: string; } /** * Check if a given object implements the DirectDebitChannelPropertiesBankAccount interface. */ export declare function instanceOfDirectDebitChannelPropertiesBankAccount(value: object): boolean; export declare function DirectDebitChannelPropertiesBankAccountFromJSON(json: any): DirectDebitChannelPropertiesBankAccount; export declare function DirectDebitChannelPropertiesBankAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectDebitChannelPropertiesBankAccount; export declare function DirectDebitChannelPropertiesBankAccountToJSON(value?: DirectDebitChannelPropertiesBankAccount | null): any;