kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
36 lines (35 loc) • 779 B
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class BatchCancelOrdersData implements Serializable {
/**
*
*/
orderId: string;
/**
*
*/
clientOid: string;
/**
*
*/
code: string;
/**
*
*/
msg: string;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): BatchCancelOrdersData;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): BatchCancelOrdersData;
}