import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetOpenOrderValueResp implements Response<RestResponse> {
    /**
     * Total number of unexecuted buy orders
     */
    openOrderBuySize: number;
    /**
     * Total number of unexecuted sell orders
     */
    openOrderSellSize: number;
    /**
     * Value of all unexecuted buy orders
     */
    openOrderBuyCost: string;
    /**
     * Value of all unexecuted sell orders
     */
    openOrderSellCost: string;
    /**
     * Settlement currency
     */
    settleCurrency: 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): GetOpenOrderValueResp;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetOpenOrderValueResp;
}
