kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
50 lines (49 loc) • 1.43 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetCallAuctionInfoReq 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 `GetCallAuctionInfoReq` class.
* The builder pattern allows step-by-step construction of a `GetCallAuctionInfoReq` object.
*/
static builder(): GetCallAuctionInfoReqBuilder;
/**
* Creates a new instance of the `GetCallAuctionInfoReq` class with the given data.
*/
static create(data: {
/**
* symbol
*/
symbol?: string;
}): GetCallAuctionInfoReq;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetCallAuctionInfoReq;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetCallAuctionInfoReq;
}
export declare class GetCallAuctionInfoReqBuilder {
readonly obj: GetCallAuctionInfoReq;
constructor(obj: GetCallAuctionInfoReq);
/**
* symbol
*/
setSymbol(value: string): GetCallAuctionInfoReqBuilder;
/**
* Get the final object.
*/
build(): GetCallAuctionInfoReq;
}