Skip to content

Commit

Permalink
Fix OKXOrderUpdate deserialization. FillNotionalUsd is optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
prodigy committed Oct 26, 2023
1 parent da91d5a commit 676953c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OKX.Net/Objects/Trade/OKXOrderUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class OKXOrderUpdate : OKXOrder
/// Filled notional value in USD of order
/// </summary>
[JsonProperty("fillNotionalUsd")]
public decimal FillNotionalUsd { get; set; }
public decimal? FillNotionalUsd { get; set; }

/// <summary>
/// Last filled profit and loss
Expand Down

0 comments on commit 676953c

Please sign in to comment.