Skip to content

Commit

Permalink
Changed BestBid and BestAsk properties to be nullable on BybitLinearI…
Browse files Browse the repository at this point in the history
…nverseTicker model
  • Loading branch information
JKorf committed Apr 18, 2024
1 parent 9b9eaa7 commit d8bed5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ByBit.Net/Objects/Models/V5/BybitLinearInverseTicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ public class BybitLinearInverseTicker
/// Best bid price
/// </summary>
[JsonProperty("bid1Price")]
public decimal BestBidPrice { get; set; }
public decimal? BestBidPrice { get; set; }
/// <summary>
/// Best bid quantity
/// </summary>
[JsonProperty("bid1Size")]
public decimal BestBidQuantity { get; set; }
public decimal? BestBidQuantity { get; set; }
/// <summary>
/// Best ask price
/// </summary>
[JsonProperty("ask1Price")]
public decimal BestAskPrice { get; set; }
public decimal? BestAskPrice { get; set; }
/// <summary>
/// Best ask quantity
/// </summary>
[JsonProperty("ask1Size")]
public decimal BestAskQuantity { get; set; }
public decimal? BestAskQuantity { get; set; }
/// <summary>
/// Last trade price
/// </summary>
Expand Down

0 comments on commit d8bed5f

Please sign in to comment.