Skip to content

Commit

Permalink
Fixed OrderBook model deserialization when updateId is too large for …
Browse files Browse the repository at this point in the history
…integer
  • Loading branch information
JKorf committed Jun 26, 2024
1 parent 90844eb commit cddc303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ByBit.Net/Objects/Models/V5/BybitOrderbook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public record BybitOrderbook
/// Update id
/// </summary>
[JsonProperty("u")]
public int UpdateId { get; set; }
public long UpdateId { get; set; }
/// <summary>
/// Cross sequence
/// </summary>
Expand Down

0 comments on commit cddc303

Please sign in to comment.