kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
48 lines (47 loc) • 1.19 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetIsolatedMarginRiskLimitData implements Serializable {
/**
* Symbol of the contract. Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220)
*/
symbol: string;
/**
* Level
*/
level: number;
/**
* Upper limit USDT (included)
*/
maxRiskLimit: number;
/**
* Lower limit USDT
*/
minRiskLimit: number;
/**
* Max. leverage
*/
maxLeverage: number;
/**
* Initial margin rate
*/
initialMargin: number;
/**
* Maintenance margin rate
*/
maintainMargin: number;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetIsolatedMarginRiskLimitData;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetIsolatedMarginRiskLimitData;
}