/** * 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 IndividualAccount */ export interface IndividualAccount { /** * Payment Account ID * @type {string} * @memberof IndividualAccount */ id?: string; /** * Internal ID given by Lemonway (ID displayed on the Backoffice/Dashboard) * @type {number} * @memberof IndividualAccount */ internalId?: number; /** * * @type {Limits} * @memberof IndividualAccount */ limits?: Limits; } /** * Check if a given object implements the IndividualAccount interface. */ export declare function instanceOfIndividualAccount(value: object): boolean; export declare function IndividualAccountFromJSON(json: any): IndividualAccount; export declare function IndividualAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndividualAccount; export declare function IndividualAccountToJSON(value?: IndividualAccount | null): any;