/** * 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 DirectDebitDebitCard */ export interface DirectDebitDebitCard { /** * Mobile number of the customer registered to the partner channel * @type {string} * @memberof DirectDebitDebitCard */ mobileNumber?: string | null; /** * Last four digits of the debit card * @type {string} * @memberof DirectDebitDebitCard */ cardLastFour?: string | null; /** * Expiry month and year of the debit card (in MM/YY format) * @type {string} * @memberof DirectDebitDebitCard */ cardExpiry?: string | null; /** * Email address of the customer that is registered to the partner channel * @type {string} * @memberof DirectDebitDebitCard */ email?: string | null; /** * Account number of the customer * @type {string} * @memberof DirectDebitDebitCard */ accountNumber?: string | null; } /** * Check if a given object implements the DirectDebitDebitCard interface. */ export declare function instanceOfDirectDebitDebitCard(value: object): boolean; export declare function DirectDebitDebitCardFromJSON(json: any): DirectDebitDebitCard; export declare function DirectDebitDebitCardFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectDebitDebitCard; export declare function DirectDebitDebitCardToJSON(value?: DirectDebitDebitCard | null): any;