kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
35 lines (34 loc) • 1.02 kB
TypeScript
import { GetSpotIndexPriceDataList } from './model_get_spot_index_price_data_list';
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetSpotIndexPriceResp implements Response<RestResponse> {
/**
*
*/
dataList: Array<GetSpotIndexPriceDataList>;
/**
* Whether there are more pages
*/
hasMore: boolean;
/**
* 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): GetSpotIndexPriceResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetSpotIndexPriceResp;
}