Skip to content

Commit

Permalink
Fix V5 BybitWithdrawal JsonProperty names. (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
code-hatchery authored Sep 4, 2023
1 parent 22fae6b commit 19f2bf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ByBit.Net/Objects/Models/V5/BybitWithdrawal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class BybitWithdrawal
/// <summary>
/// Network
/// </summary>
[JsonProperty("network")]
[JsonProperty("chain")]
public string Network { get; set; } = string.Empty;
/// <summary>
/// Quantity
Expand Down Expand Up @@ -51,13 +51,13 @@ public class BybitWithdrawal
/// <summary>
/// Create time
/// </summary>
[JsonProperty("createdTime")]
[JsonProperty("createTime")]
[JsonConverter(typeof(DateTimeConverter))]
public DateTime CreateTime { get; set; }
/// <summary>
/// Update time
/// </summary>
[JsonProperty("updatedTime")]
[JsonProperty("updateTime")]
[JsonConverter(typeof(DateTimeConverter))]
public DateTime UpdateTime { get; set; }
/// <summary>
Expand Down

0 comments on commit 19f2bf2

Please sign in to comment.