UNPKG

kucoin-universal-sdk

Version:
38 lines (37 loc) 1.05 kB
import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class GetBrokerInfoResp implements Response<RestResponse> { /** * Number of sub-accounts created */ accountSize: number; /** * The maximum number of sub-accounts allowed to be created; null means no limit */ maxAccountSize: number; /** * Broker level */ level: number; /** * Private constructor, please use the corresponding static methods to construct the object. */ private constructor(); /** * common response */ commonResponse?: RestResponse; setCommonResponse(response: RestResponse): void; /** * Convert the object to a JSON string. */ toJson(): string; /** * Create an object from a JSON string. */ static fromJson(input: string): GetBrokerInfoResp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetBrokerInfoResp; }