/** * 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 DisableIBANInput */ export interface DisableIBANInput { /** * Payment Account ID * @type {string} * @memberof DisableIBANInput */ wallet: string; } /** * Check if a given object implements the DisableIBANInput interface. */ export declare function instanceOfDisableIBANInput(value: object): boolean; export declare function DisableIBANInputFromJSON(json: any): DisableIBANInput; export declare function DisableIBANInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisableIBANInput; export declare function DisableIBANInputToJSON(value?: DisableIBANInput | null): any;