/** * 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 */ /** * Card Information * @export * @interface CardParametersCardInformation */ export interface CardParametersCardInformation { /** * * @type {string} * @memberof CardParametersCardInformation */ cardNumber: string; /** * Card expiry month in MM format * @type {string} * @memberof CardParametersCardInformation */ expiryMonth: string; /** * Card expiry month in YY format * @type {string} * @memberof CardParametersCardInformation */ expiryYear: string; /** * Cardholder name * @type {string} * @memberof CardParametersCardInformation */ cardholderName?: string | null; /** * * @type {string} * @memberof CardParametersCardInformation */ cvv?: string | null; } /** * Check if a given object implements the CardParametersCardInformation interface. */ export declare function instanceOfCardParametersCardInformation(value: object): boolean; export declare function CardParametersCardInformationFromJSON(json: any): CardParametersCardInformation; export declare function CardParametersCardInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardParametersCardInformation; export declare function CardParametersCardInformationToJSON(value?: CardParametersCardInformation | null): any;