UNPKG

kucoin-universal-sdk

Version:
30 lines (29 loc) 889 B
import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class CancelAllOrdersV3Resp implements Response<RestResponse> { /** * Unique ID of the cancelled order */ cancelledOrderIds: Array<string>; /** * 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): CancelAllOrdersV3Resp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): CancelAllOrdersV3Resp; }