Skip to content

Commit

Permalink
Updated SpotApi.Account.GetWithdrawHistoryAsync response model
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Apr 17, 2024
1 parent 20bebb3 commit 0247f97
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion Mexc.Net/Objects/Models/Spot/MexcWithdrawal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class MexcWithdrawal
[JsonProperty("confirmNo")]
public int? Confirmations { get; set; }
/// <summary>
/// Aply time
/// Apply time
/// </summary>
[JsonProperty("applyTime")]
public DateTime ApplyTime { get; set; }
Expand All @@ -75,5 +75,25 @@ public class MexcWithdrawal
/// </summary>
[JsonProperty("memo")]
public string? Memo { get; set; }
/// <summary>
/// Transaction hash
/// </summary>
[JsonProperty("transHash")]
public string? TransactionHash { get; set; }
/// <summary>
/// Last update time
/// </summary>
[JsonProperty("updateTime")]
public DateTime? UpdateTime { get; set; }
/// <summary>
/// Asset id
/// </summary>
[JsonProperty("coinId")]
public string? AssetId { get; set; }
/// <summary>
/// CurrencyId
/// </summary>
[JsonProperty("vcoinId")]
public string? CurrencyId { get; set; }
}
}

0 comments on commit 0247f97

Please sign in to comment.