/** * 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 RegisterIBANOutput */ export interface RegisterIBANOutput { /** * IBAN ID * @type {number} * @memberof RegisterIBANOutput */ ibanId?: number; /** * IBAN Status
1 = None.
2 = Internal.
3 = Not used.
4 = Waiting to be verified by Lemon Way.
5 = Activated.
6 = Rejected by the bank.
7 = Rejected, no owner.
8 = Deactivated.
9 = Rejected.
* @type {number} * @memberof RegisterIBANOutput */ status?: RegisterIBANOutputStatusEnum; /** * * @type {Error} * @memberof RegisterIBANOutput */ error?: Error; } /** * @export */ export declare const RegisterIBANOutputStatusEnum: { readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_4: 4; readonly NUMBER_5: 5; readonly NUMBER_6: 6; readonly NUMBER_7: 7; readonly NUMBER_8: 8; readonly NUMBER_9: 9; }; export declare type RegisterIBANOutputStatusEnum = typeof RegisterIBANOutputStatusEnum[keyof typeof RegisterIBANOutputStatusEnum]; /** * Check if a given object implements the RegisterIBANOutput interface. */ export declare function instanceOfRegisterIBANOutput(value: object): boolean; export declare function RegisterIBANOutputFromJSON(json: any): RegisterIBANOutput; export declare function RegisterIBANOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterIBANOutput; export declare function RegisterIBANOutputToJSON(value?: RegisterIBANOutput | null): any;