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