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