Interface Trade

interface Trade {
    a: TradeSide;
    b: TradeSide;
    status: string;
    timestamp: null | string;
    transaction_id: number;
}

Hierarchy

  • Trade
    • Trade

Properties

a: TradeSide

Trade

b: TradeSide

Trade

status: string

Status of this trade

Trade

timestamp: null | string

Time this trade occurred

Trade

transaction_id: number

Sequential ID of this trade within Immutable X

Trade