UNPKG

kucoin-universal-sdk

Version:
31 lines (30 loc) 939 B
import { GetMarginRiskLimitData } from './model_get_margin_risk_limit_data'; import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class GetMarginRiskLimitResp implements Response<RestResponse> { /** * */ data: Array<GetMarginRiskLimitData>; /** * 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): GetMarginRiskLimitResp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetMarginRiskLimitResp; }