kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
35 lines (34 loc) • 1.31 kB
TypeScript
import { GetClosedOrdersItems } from './model_get_closed_orders_items';
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetClosedOrdersResp implements Response<RestResponse> {
/**
* The ID of the last set of data from the previous data batch. By default, the latest information is given. lastId is used to filter data and paginate. If lastId is not entered, the default is a maximum of 100 returned data items. The return results include lastId, which can be used as a query parameter to look up new data from the next page.
*/
lastId: number;
/**
*
*/
items: Array<GetClosedOrdersItems>;
/**
* 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): GetClosedOrdersResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetClosedOrdersResp;
}