UNPKG

kucoin-universal-sdk

Version:
51 lines (50 loc) 1.4 kB
import 'reflect-metadata'; import { Serializable } from '../../../internal/interfaces/serializable'; export declare class CancelOrderByIdReq implements Serializable { /** * */ orderId?: string; /** * Private constructor, please use the corresponding static methods to construct the object. */ private constructor(); /** * Creates a new instance of the `CancelOrderByIdReq` class. * The builder pattern allows step-by-step construction of a `CancelOrderByIdReq` object. */ static builder(): CancelOrderByIdReqBuilder; /** * Creates a new instance of the `CancelOrderByIdReq` class with the given data. */ static create(data: { /** * */ orderId?: string; }): CancelOrderByIdReq; /** * Convert the object to a JSON string. */ toJson(): string; /** * Create an object from a JSON string. */ static fromJson(input: string): CancelOrderByIdReq; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): CancelOrderByIdReq; } export declare class CancelOrderByIdReqBuilder { readonly obj: CancelOrderByIdReq; constructor(obj: CancelOrderByIdReq); /** * */ setOrderId(value: string): CancelOrderByIdReqBuilder; /** * Get the final object. */ build(): CancelOrderByIdReq; }