kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
51 lines (50 loc) • 1.89 kB
TypeScript
import 'reflect-metadata';
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetIsolatedMarginRiskLimitReq implements Serializable {
/**
* Symbol of the contract. Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220)
*/
symbol?: string;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Creates a new instance of the `GetIsolatedMarginRiskLimitReq` class.
* The builder pattern allows step-by-step construction of a `GetIsolatedMarginRiskLimitReq` object.
*/
static builder(): GetIsolatedMarginRiskLimitReqBuilder;
/**
* Creates a new instance of the `GetIsolatedMarginRiskLimitReq` class with the given data.
*/
static create(data: {
/**
* Symbol of the contract. Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220)
*/
symbol?: string;
}): GetIsolatedMarginRiskLimitReq;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetIsolatedMarginRiskLimitReq;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetIsolatedMarginRiskLimitReq;
}
export declare class GetIsolatedMarginRiskLimitReqBuilder {
readonly obj: GetIsolatedMarginRiskLimitReq;
constructor(obj: GetIsolatedMarginRiskLimitReq);
/**
* Symbol of the contract. Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220)
*/
setSymbol(value: string): GetIsolatedMarginRiskLimitReqBuilder;
/**
* Get the final object.
*/
build(): GetIsolatedMarginRiskLimitReq;
}