kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
58 lines (57 loc) • 1.39 kB
TypeScript
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetCallAuctionInfoResp implements Response<RestResponse> {
/**
* Symbol
*/
symbol: string;
/**
* Estimated price
*/
estimatedPrice: string;
/**
* Estimated size
*/
estimatedSize: string;
/**
* Sell order minimum price
*/
sellOrderRangeLowPrice: string;
/**
* Sell order maximum price
*/
sellOrderRangeHighPrice: string;
/**
* Buy order minimum price
*/
buyOrderRangeLowPrice: string;
/**
* Buy order maximum price
*/
buyOrderRangeHighPrice: string;
/**
* Timestamp (ms)
*/
time: number;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* common response
*/
commonResponse?: RestResponse;
setCommonResponse(response: RestResponse): void;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetCallAuctionInfoResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetCallAuctionInfoResp;
}