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