/** * 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 AccountBalance */ export interface AccountBalance { /** * Payment account ID * @type {string} * @memberof AccountBalance */ id?: string; /** * Payment account balance * @type {number} * @memberof AccountBalance */ balance?: number; /** * Status of the payment account
2 = Registered, KYC incomplete.
3 = Registered, rejected KYC.
5 = Registered, KYC 1 (status given at registration).
6 = Registered, KYC 2.
7 = Registered, KYC 3.
8 = Registered, expired KYC.
10 = Blocked.
12 = Closed.
13 = Registered, status is being updated from KYC 2 to KYC 3.
14 = One-time customer.
15 = Special account for crowdlending.
16 = Technical account.
* @type {number} * @memberof AccountBalance */ status?: AccountBalanceStatusEnum; } /** * @export */ export declare const AccountBalanceStatusEnum: { readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_5: 5; readonly NUMBER_6: 6; readonly NUMBER_7: 7; readonly NUMBER_8: 8; readonly NUMBER_10: 10; readonly NUMBER_12: 12; readonly NUMBER_13: 13; readonly NUMBER_14: 14; readonly NUMBER_15: 15; readonly NUMBER_16: 16; }; export declare type AccountBalanceStatusEnum = typeof AccountBalanceStatusEnum[keyof typeof AccountBalanceStatusEnum]; /** * Check if a given object implements the AccountBalance interface. */ export declare function instanceOfAccountBalance(value: object): boolean; export declare function AccountBalanceFromJSON(json: any): AccountBalance; export declare function AccountBalanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountBalance; export declare function AccountBalanceToJSON(value?: AccountBalance | null): any;