kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
50 lines (49 loc) • 1.35 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class Get24hrStatsReq implements Serializable {
/**
* symbol
*/
symbol?: string;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Creates a new instance of the `Get24hrStatsReq` class.
* The builder pattern allows step-by-step construction of a `Get24hrStatsReq` object.
*/
static builder(): Get24hrStatsReqBuilder;
/**
* Creates a new instance of the `Get24hrStatsReq` class with the given data.
*/
static create(data: {
/**
* symbol
*/
symbol?: string;
}): Get24hrStatsReq;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): Get24hrStatsReq;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): Get24hrStatsReq;
}
export declare class Get24hrStatsReqBuilder {
readonly obj: Get24hrStatsReq;
constructor(obj: Get24hrStatsReq);
/**
* symbol
*/
setSymbol(value: string): Get24hrStatsReqBuilder;
/**
* Get the final object.
*/
build(): Get24hrStatsReq;
}