/** * 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 UnregisterCardOutput */ export interface UnregisterCardOutput { /** * ID Card * @type {number} * @memberof UnregisterCardOutput */ cardId?: number; /** * * @type {Error} * @memberof UnregisterCardOutput */ error?: Error; } /** * Check if a given object implements the UnregisterCardOutput interface. */ export declare function instanceOfUnregisterCardOutput(value: object): boolean; export declare function UnregisterCardOutputFromJSON(json: any): UnregisterCardOutput; export declare function UnregisterCardOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnregisterCardOutput; export declare function UnregisterCardOutputToJSON(value?: UnregisterCardOutput | null): any;