/** * 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 Card */ export interface Card { /** * * @type {number} * @memberof Card */ id?: number; /** * Card with 3-DS authentication * @type {boolean} * @memberof Card */ is3DS?: boolean; /** * Country that issued the card * @type {string} * @memberof Card */ country?: string; /** * Authorization number * @type {string} * @memberof Card */ authorizationNumber?: string; /** * Masked card number * @type {string} * @memberof Card */ maskedNumber?: string; /** * Expiration date if available * @type {string} * @memberof Card */ expiration?: string; /** * Card type example: Visa or Mastercard * @type {string} * @memberof Card */ type?: string; /** * Card is registered * @type {boolean} * @memberof Card */ isRegistered?: boolean; } /** * Check if a given object implements the Card interface. */ export declare function instanceOfCard(value: object): boolean; export declare function CardFromJSON(json: any): Card; export declare function CardFromJSONTyped(json: any, ignoreDiscriminator: boolean): Card; export declare function CardToJSON(value?: Card | null): any;