/** * 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 DisableIBANOutput */ export interface DisableIBANOutput { /** * IBAN ID * @type {number} * @memberof DisableIBANOutput */ id?: number; /** * IBAN Status * @type {number} * @memberof DisableIBANOutput */ status?: number; /** * * @type {Error} * @memberof DisableIBANOutput */ error?: Error; } /** * Check if a given object implements the DisableIBANOutput interface. */ export declare function instanceOfDisableIBANOutput(value: object): boolean; export declare function DisableIBANOutputFromJSON(json: any): DisableIBANOutput; export declare function DisableIBANOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisableIBANOutput; export declare function DisableIBANOutputToJSON(value?: DisableIBANOutput | null): any;