bitfinex-node-api
    Preparing search index...

    Interface IOrderResponse

    interface IOrderResponse {
        avg_execution_price: string;
        cid: number;
        cid_date: string;
        exchange: "bitfinex";
        executed_amount: string;
        gid: string | number | null;
        id: number;
        is_cancelled: boolean;
        is_hidden: boolean | 0 | 1;
        is_live: boolean;
        meta?: Record<string, unknown>;
        oco_order?: boolean | 0 | 1 | null;
        order_id?: number;
        original_amount: string;
        price: string;
        remaining_amount: string;
        side: IOrderSide;
        src?: string;
        symbol: string;
        timestamp: string;
        type: IOrderType;
        was_forced: boolean;
    }
    Index

    Properties

    avg_execution_price: string
    cid: number
    cid_date: string
    exchange: "bitfinex"
    executed_amount: string
    gid: string | number | null
    id: number
    is_cancelled: boolean
    is_hidden: boolean | 0 | 1
    is_live: boolean
    meta?: Record<string, unknown>
    oco_order?: boolean | 0 | 1 | null
    order_id?: number
    original_amount: string
    price: string
    remaining_amount: string
    side: IOrderSide
    src?: string
    symbol: string
    timestamp: string
    type: IOrderType
    was_forced: boolean