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