/** * 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 CreateIBANOutput */ export interface CreateIBANOutput { /** * IBAN ID * @type {number} * @memberof CreateIBANOutput */ id?: number; /** * IBAN * @type {string} * @memberof CreateIBANOutput */ iban?: string; /** * BIC/SWIFT Code * @type {string} * @memberof CreateIBANOutput */ bic?: string; /** * IBAN Owner: First Name, Last Name, or Enterprise Name * @type {string} * @memberof CreateIBANOutput */ holder?: string; /** * Domiciliation * @type {string} * @memberof CreateIBANOutput */ domiciliation?: string; /** * IBAN Status * @type {number} * @memberof CreateIBANOutput */ status?: number; /** * IBAN left that can be generated for this wallet * @type {number} * @memberof CreateIBANOutput */ maxAvailableIbanPerWallet?: number; /** * IBAN left that can be generated in total * @type {number} * @memberof CreateIBANOutput */ maxAvailableIban?: number; /** * PDF in base64 * @type {string} * @memberof CreateIBANOutput */ pdf?: string; /** * QR Code PNG in base64 * @type {string} * @memberof CreateIBANOutput */ qrCode?: string; /** * * @type {Error} * @memberof CreateIBANOutput */ error?: Error; } /** * Check if a given object implements the CreateIBANOutput interface. */ export declare function instanceOfCreateIBANOutput(value: object): boolean; export declare function CreateIBANOutputFromJSON(json: any): CreateIBANOutput; export declare function CreateIBANOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateIBANOutput; export declare function CreateIBANOutputToJSON(value?: CreateIBANOutput | null): any;