Skip to content

Commit

Permalink
Fixed deserialization issue in okxRestClient.UnifiedApi.ExchangeData.…
Browse files Browse the repository at this point in the history
…GetDiscountInfoAsync
  • Loading branch information
JKorf committed Nov 11, 2024
1 parent ac2ff5f commit ff40aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OKX.Net/Objects/Public/OKXDiscountInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public record OKXDiscountInfo
/// Discount level
/// </summary>
[JsonPropertyName("discountLv")]
public int DiscountLevel { get; set; }
public int? DiscountLevel { get; set; }

/// <summary>
/// Minimal discount rate
Expand Down

0 comments on commit ff40aa4

Please sign in to comment.