kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
47 lines (46 loc) • 1.31 kB
TypeScript
import { GetSpotSubAccountsSummaryV2Items } from './model_get_spot_sub_accounts_summary_v2_items';
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetSpotSubAccountsSummaryV2Resp implements Response<RestResponse> {
/**
* Current request page
*/
currentPage: number;
/**
* Number of results per request. Minimum is 1, maximum is 100
*/
pageSize: number;
/**
* Total number of messages
*/
totalNum: number;
/**
* Total number of pages
*/
totalPage: number;
/**
*
*/
items: Array<GetSpotSubAccountsSummaryV2Items>;
/**
* 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): GetSpotSubAccountsSummaryV2Resp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetSpotSubAccountsSummaryV2Resp;
}