/** * 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 { Document } from './Document'; /** * * @export * @interface AccountDocumentsOutput */ export interface AccountDocumentsOutput { /** * List of documents that changed since the entry date * @type {Array} * @memberof AccountDocumentsOutput */ documents?: Array; /** * * @type {Error} * @memberof AccountDocumentsOutput */ error?: Error; } /** * Check if a given object implements the AccountDocumentsOutput interface. */ export declare function instanceOfAccountDocumentsOutput(value: object): boolean; export declare function AccountDocumentsOutputFromJSON(json: any): AccountDocumentsOutput; export declare function AccountDocumentsOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountDocumentsOutput; export declare function AccountDocumentsOutputToJSON(value?: AccountDocumentsOutput | null): any;