/** * 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. */ import type { CardInfo } from './CardInfo'; /** * * @export * @interface RegisterCardInput */ export interface RegisterCardInput { /** * Payment Account ID * @type {string} * @memberof RegisterCardInput */ accountId: string; /** * * @type {CardInfo} * @memberof RegisterCardInput */ card: CardInfo; /** * Leave Empty * @type {string} * @memberof RegisterCardInput */ specialConfiguration?: string; } /** * Check if a given object implements the RegisterCardInput interface. */ export declare function instanceOfRegisterCardInput(value: object): boolean; export declare function RegisterCardInputFromJSON(json: any): RegisterCardInput; export declare function RegisterCardInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterCardInput; export declare function RegisterCardInputToJSON(value?: RegisterCardInput | null): any;