/** * 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 CardInfoExtended */ export interface CardInfoExtended { /** * Card Holder * @type {string} * @memberof CardInfoExtended */ cardHolder?: string; /** * Card Type
0 = CB.
1 = Visa.
2 = Mastercard.
* @type {number} * @memberof CardInfoExtended */ cardType: CardInfoExtendedCardTypeEnum; /** * Masked Card Number * @type {string} * @memberof CardInfoExtended */ cardNumber: string; /** * Card Expiration Date * @type {string} * @memberof CardInfoExtended */ cardDate: string; /** * Card Country * @type {string} * @memberof CardInfoExtended */ cardCountry?: string; } /** * @export */ export declare const CardInfoExtendedCardTypeEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; readonly NUMBER_2: 2; }; export declare type CardInfoExtendedCardTypeEnum = typeof CardInfoExtendedCardTypeEnum[keyof typeof CardInfoExtendedCardTypeEnum]; /** * Check if a given object implements the CardInfoExtended interface. */ export declare function instanceOfCardInfoExtended(value: object): boolean; export declare function CardInfoExtendedFromJSON(json: any): CardInfoExtended; export declare function CardInfoExtendedFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardInfoExtended; export declare function CardInfoExtendedToJSON(value?: CardInfoExtended | null): any;