kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
56 lines (55 loc) • 1.48 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetCrossMarginRiskLimitData implements Serializable {
/**
* Symbol of the contract. Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220)
*/
symbol: string;
/**
* Maximum amount of open position(Unit is **lots**)
*/
maxOpenSize: number;
/**
* Maximum value of open position(Unit is **quoteCcy**)
*/
maxOpenValue: string;
/**
* Margin amount used for max position calculation.
*/
totalMargin: string;
/**
* Price used for max position calculation. Defaults to latest transaction price
*/
price: string;
/**
* Leverage used for max position calculation.
*/
leverage: string;
/**
* Maintenance Margin Rate
*/
mmr: string;
/**
* Initial Margin Rate
*/
imr: string;
/**
* Margin Currency
*/
currency: string;
/**
* 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): GetCrossMarginRiskLimitData;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetCrossMarginRiskLimitData;
}