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;
    /**
     * The user self-defined order ID.
     */
    clientOid?: string;
    /**
     * Add order success/failure
     */
    success: boolean;
    /**
     * Error message
     */
    failMsg?: 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;
}
