/** * 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 UnregisterIBANOutput */ export interface UnregisterIBANOutput { /** * * @type {number} * @memberof UnregisterIBANOutput */ id?: number; /** * * @type {Error} * @memberof UnregisterIBANOutput */ error?: Error; } /** * Check if a given object implements the UnregisterIBANOutput interface. */ export declare function instanceOfUnregisterIBANOutput(value: object): boolean; export declare function UnregisterIBANOutputFromJSON(json: any): UnregisterIBANOutput; export declare function UnregisterIBANOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnregisterIBANOutput; export declare function UnregisterIBANOutputToJSON(value?: UnregisterIBANOutput | null): any;