Class OrderBookResponse
Returned by the
Inheritance
System.Object
OrderBookResponse
Namespace: FFT.Binance
Assembly: FFT.Binance.dll
Syntax
public sealed class OrderBookResponse : object
Constructors
| Improve this Doc View SourceOrderBookResponse(Int64, ImmutableList<PriceQty>, ImmutableList<PriceQty>)
Initializes a new instance of the OrderBookResponse class.
Declaration
public OrderBookResponse(long lastUpdateId, ImmutableList<PriceQty> bids, ImmutableList<PriceQty> asks)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int64 | lastUpdateId | |
| ImmutableList<PriceQty> | bids | |
| ImmutableList<PriceQty> | asks |
Properties
| Improve this Doc View SourceAsks
The top asks in the order book.
Declaration
public ImmutableList<PriceQty> Asks { get; }
Property Value
| Type | Description |
|---|---|
| ImmutableList<PriceQty> |
Bids
The top bids in the order book.
Declaration
public ImmutableList<PriceQty> Bids { get; }
Property Value
| Type | Description |
|---|---|
| ImmutableList<PriceQty> |
LastUpdateId
Id of the most recent order book update.
Declaration
public long LastUpdateId { get; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |