/** * 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. */ import type { Limits } from './Limits'; /** * * @export * @interface LegalAccount */ export interface LegalAccount { /** * Updated Wallet ID (your choice when you create the Wallet) * @type {string} * @memberof LegalAccount */ id?: string; /** * Lemonway Wallet ID (you cannot choose this number). This number is also printed in our Backoffice/Dashboard. * @type {number} * @memberof LegalAccount */ lemonwayId?: number; /** * * @type {Limits} * @memberof LegalAccount */ limits?: Limits; } /** * Check if a given object implements the LegalAccount interface. */ export declare function instanceOfLegalAccount(value: object): boolean; export declare function LegalAccountFromJSON(json: any): LegalAccount; export declare function LegalAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): LegalAccount; export declare function LegalAccountToJSON(value?: LegalAccount | null): any;