UNPKG

kucoin-universal-sdk

Version:
35 lines (34 loc) 1.08 kB
import { CancelAllOrdersFailedSymbols } from './model_cancel_all_orders_failed_symbols'; import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class CancelAllOrdersResp implements Response<RestResponse> { /** * The Symbols Successfully cancelled */ succeedSymbols: Array<string>; /** * The Symbols Failed to cancel */ failedSymbols: Array<CancelAllOrdersFailedSymbols>; /** * 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): CancelAllOrdersResp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): CancelAllOrdersResp; }