RestOpenOrder: {
    cl_ord_id?: string;
    cost: string;
    descr: {
        aclass?: string;
        close: string;
        leverage: string;
        order: string;
        ordertype: RestOrderType;
        pair: string;
        price: string;
        price2: string;
        type: RestOrderDirection;
    };
    expiretm: number;
    fee: string;
    limitprice: string;
    margin?: boolean;
    misc: string;
    oflags: string;
    opentm: number;
    price: string;
    refid: string | null;
    sender_sub_id?: string;
    starttm: number;
    status:
        | "pending"
        | "open"
        | "closed"
        | "expired"
        | "canceled";
    stopprice: string;
    time_in_force?:
        | "gtc"
        | "ioc"
        | "gtd"
        | "fok";
    trades?: string[];
    trigger?: "last" | "index";
    userref?: number | null;
    vol: string;
    vol_exec: string;
}