kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
30 lines (29 loc) • 1 kB
TypeScript
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class RemoveIsolatedMarginResp implements Response<RestResponse> {
/**
* The size of the position deposited. If it is USDT-margin, it represents the amount of USDT. If it is coin-margin, this value represents the number of coins
*/
data: string;
/**
* 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): RemoveIsolatedMarginResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): RemoveIsolatedMarginResp;
}