/**
* 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 RegisterIBANExtendedOutput
*/
export interface RegisterIBANExtendedOutput {
/**
* IBAN ID
* @type {number}
* @memberof RegisterIBANExtendedOutput
*/
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 RegisterIBANExtendedOutput
*/
status?: RegisterIBANExtendedOutputStatusEnum;
/**
*
* @type {Error}
* @memberof RegisterIBANExtendedOutput
*/
error?: Error;
}
/**
* @export
*/
export declare const RegisterIBANExtendedOutputStatusEnum: {
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 RegisterIBANExtendedOutputStatusEnum = typeof RegisterIBANExtendedOutputStatusEnum[keyof typeof RegisterIBANExtendedOutputStatusEnum];
/**
* Check if a given object implements the RegisterIBANExtendedOutput interface.
*/
export declare function instanceOfRegisterIBANExtendedOutput(value: object): boolean;
export declare function RegisterIBANExtendedOutputFromJSON(json: any): RegisterIBANExtendedOutput;
export declare function RegisterIBANExtendedOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterIBANExtendedOutput;
export declare function RegisterIBANExtendedOutputToJSON(value?: RegisterIBANExtendedOutput | null): any;