/** * 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 GetCardOutput */ export interface GetCardOutput { /** * * @type {Card} * @memberof GetCardOutput */ card?: Card; /** * * @type {Error} * @memberof GetCardOutput */ error?: Error; } /** * Check if a given object implements the GetCardOutput interface. */ export declare function instanceOfGetCardOutput(value: object): boolean; export declare function GetCardOutputFromJSON(json: any): GetCardOutput; export declare function GetCardOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCardOutput; export declare function GetCardOutputToJSON(value?: GetCardOutput | null): any;