Skip to content

Commit

Permalink
Updated restClient.UnifiedApi.Account.GetAssetsAsync response model
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Nov 25, 2024
1 parent 1b51ff5 commit 87ddd1d
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
20 changes: 20 additions & 0 deletions OKX.Net/OKX.Net.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions OKX.Net/Objects/Funding/OKXAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,25 @@ public record OKXAsset
/// </summary>
[JsonPropertyName("burningFeeRate")]
public decimal? BurningFeeRate { get; set; }

/// <summary>
/// Contract address
/// </summary>
[JsonPropertyName("ctAddr")]
public string? ContractAddress { get; set; }
/// <summary>
/// Estimated deposit open time
/// </summary>
[JsonPropertyName("depEstOpenTime")]
public DateTime? EstimatedDepositOpenTime { get; set; }
/// <summary>
/// Estimated withdrawal open time
/// </summary>
[JsonPropertyName("wdEstOpenTime")]
public DateTime? EstimatedWithdrawalOpenTime { get; set; }
/// <summary>
/// Minimal internal tranfer quantity
/// </summary>
[JsonPropertyName("minInternal")]
public decimal? MinInternalTransferQuantity { get; set; }
}

0 comments on commit 87ddd1d

Please sign in to comment.