kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
31 lines (30 loc) • 930 B
TypeScript
import { GetAllSymbolsData } from './model_get_all_symbols_data';
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetAllSymbolsResp implements Response<RestResponse> {
/**
* List of all contracts
*/
data: Array<GetAllSymbolsData>;
/**
* 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): GetAllSymbolsResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetAllSymbolsResp;
}