Show / Hide Table of Contents

Class OrderBookResponse

Returned by the method.

Inheritance
System.Object
OrderBookResponse
Namespace: FFT.Binance
Assembly: FFT.Binance.dll
Syntax
public sealed class OrderBookResponse : object

Constructors

| Improve this Doc View Source

OrderBookResponse(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 Source

Asks

The top asks in the order book.

Declaration
public ImmutableList<PriceQty> Asks { get; }
Property Value
Type Description
ImmutableList<PriceQty>
| Improve this Doc View Source

Bids

The top bids in the order book.

Declaration
public ImmutableList<PriceQty> Bids { get; }
Property Value
Type Description
ImmutableList<PriceQty>
| Improve this Doc View Source

LastUpdateId

Id of the most recent order book update.

Declaration
public long LastUpdateId { get; }
Property Value
Type Description
System.Int64
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX