kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
34 lines (33 loc) • 916 B
TypeScript
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class ModifyOrderResp implements Response<RestResponse> {
/**
* The new order ID
*/
newOrderId: string;
/**
* The original client order ID
*/
clientOid: 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): ModifyOrderResp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): ModifyOrderResp;
}