/**
* Lemonway DirectKit API 2.0
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface CardInfo
*/
export interface CardInfo {
/**
* Card Type
0 = CB.
1 = Visa.
2 = Mastercard.
* @type {number}
* @memberof CardInfo
*/
cardType: CardInfoCardTypeEnum;
/**
* Card Number
* @type {string}
* @memberof CardInfo
*/
cardNumber: string;
/**
* CVV Code (back of the card)
* @type {string}
* @memberof CardInfo
*/
cardCode: string;
/**
* Card Expiration Date
* @type {string}
* @memberof CardInfo
*/
cardDate: string;
}
/**
* @export
*/
export declare const CardInfoCardTypeEnum: {
readonly NUMBER_0: 0;
readonly NUMBER_1: 1;
readonly NUMBER_2: 2;
};
export declare type CardInfoCardTypeEnum = typeof CardInfoCardTypeEnum[keyof typeof CardInfoCardTypeEnum];
/**
* Check if a given object implements the CardInfo interface.
*/
export declare function instanceOfCardInfo(value: object): boolean;
export declare function CardInfoFromJSON(json: any): CardInfo;
export declare function CardInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardInfo;
export declare function CardInfoToJSON(value?: CardInfo | null): any;