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