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