/** * 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 Limits */ export interface Limits { /** * Total Money-In number allowed for this account * @type {number} * @memberof Limits */ totalMoneyInAllowed?: number; /** * Total Money-In amount allowed for this wallet * @type {number} * @memberof Limits */ amountMoneyInAllowed?: number; } /** * Check if a given object implements the Limits interface. */ export declare function instanceOfLimits(value: object): boolean; export declare function LimitsFromJSON(json: any): Limits; export declare function LimitsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Limits; export declare function LimitsToJSON(value?: Limits | null): any;