/** * 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 Iban */ export interface Iban { /** * IBAN ID * @type {number} * @memberof Iban */ id?: number; /** * Only status 5 allows the use of the IBAN for a money-out.
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 Iban */ status?: IbanStatusEnum; /** * IBAN saved * @type {string} * @memberof Iban */ iban?: string; /** * SWIFT BIC code associated with the IBAN * @type {string} * @memberof Iban */ swift?: string; /** * IBAN Holder * @type {string} * @memberof Iban */ holder?: string; /** * Indicates if a merchant IBAN or a virtual client IBAN * 1: Merchant IBAN * 2: IBAN virtual client * @type {number} * @memberof Iban */ type?: number; } /** * @export */ export declare const IbanStatusEnum: { 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 IbanStatusEnum = typeof IbanStatusEnum[keyof typeof IbanStatusEnum]; /** * Check if a given object implements the Iban interface. */ export declare function instanceOfIban(value: object): boolean; export declare function IbanFromJSON(json: any): Iban; export declare function IbanFromJSONTyped(json: any, ignoreDiscriminator: boolean): Iban; export declare function IbanToJSON(value?: Iban | null): any;