kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
30 lines (29 loc) • 1.03 kB
TypeScript
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class ModifyIsolatedMarginRiskLimtResp implements Response<RestResponse> {
/**
* Adjusting the level will result in the cancellation of any open orders. The response will indicate only whether the adjustment request was successfully submitted.
*/
data: boolean;
/**
* 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): ModifyIsolatedMarginRiskLimtResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): ModifyIsolatedMarginRiskLimtResp;
}