/** * 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 { Card } from './Card'; /** * * @export * @interface RegisterCardOutput */ export interface RegisterCardOutput { /** * * @type {Card} * @memberof RegisterCardOutput */ card?: Card; /** * * @type {Error} * @memberof RegisterCardOutput */ error?: Error; } /** * Check if a given object implements the RegisterCardOutput interface. */ export declare function instanceOfRegisterCardOutput(value: object): boolean; export declare function RegisterCardOutputFromJSON(json: any): RegisterCardOutput; export declare function RegisterCardOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterCardOutput; export declare function RegisterCardOutputToJSON(value?: RegisterCardOutput | null): any;