Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

QueryOrdersByUserResponseItem

One item in Info.orders_by_user's response map. Same shape as QueryOrderResponse minus user (the map is already keyed by user).

Definition

class QueryOrdersByUserResponseItem(TypedDict):
    pair_id: PairId
    size: Quantity
    limit_price: UsdPrice
    reduce_only: bool
    reserved_margin: UsdValue
    created_at: Timestamp

Fields

pair_idPairId.

sizeQuantity. Signed remaining size.

limit_priceUsdPrice.

reduce_onlybool.

reserved_marginUsdValue.

created_atTimestamp. ns-precision integer string.

See also