UNPKG

kucoin-universal-sdk

Version:
40 lines (39 loc) 1.22 kB
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class BatchAddOrdersData implements Serializable { /** * The unique order id generated by the trading system,which can be used later for further actions such as canceling the order. */ orderId: string; /** * Unique order id created by users to identify their orders, the maximum length cannot exceed 40, e.g. UUID, Only allows numbers, characters, underline(_), and separator(-) */ clientOid: string; /** * Symbol of the contract, Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220) */ symbol: 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): BatchAddOrdersData; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): BatchAddOrdersData; }