/** * 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 { UploadDocument } from './UploadDocument'; /** * * @export * @interface UploadDocumentOutput */ export interface UploadDocumentOutput { /** * * @type {UploadDocument} * @memberof UploadDocumentOutput */ uploadDocument?: UploadDocument; /** * * @type {Error} * @memberof UploadDocumentOutput */ error?: Error; } /** * Check if a given object implements the UploadDocumentOutput interface. */ export declare function instanceOfUploadDocumentOutput(value: object): boolean; export declare function UploadDocumentOutputFromJSON(json: any): UploadDocumentOutput; export declare function UploadDocumentOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UploadDocumentOutput; export declare function UploadDocumentOutputToJSON(value?: UploadDocumentOutput | null): any;