Skip to content

Commit

Permalink
Updated UpdatePositionModeAsync response model
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Nov 25, 2024
1 parent 08642ea commit f893cd5
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
30 changes: 30 additions & 0 deletions GateIo.Net/GateIo.Net.xml

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

30 changes: 30 additions & 0 deletions GateIo.Net/Objects/Models/GateIoFuturesAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,36 @@ public record GateIoFuturesAccount
[JsonPropertyName("enable_evolved_classic")]
public bool ClassicMarginMode { get; set; }
/// <summary>
/// Cross initial margin
/// </summary>
[JsonPropertyName("cross_initial_margin")]
public decimal? CrossInitialMargin { get; set; }
/// <summary>
/// Cross maintenance margin
/// </summary>
[JsonPropertyName("cross_maintenance_margin")]
public decimal? CrossMaintenanceMargin { get; set; }
/// <summary>
/// Cross order margin
/// </summary>
[JsonPropertyName("cross_order_margin")]
public decimal? CrossOrderMargin { get; set; }
/// <summary>
/// Cross unrealized profit and loss
/// </summary>
[JsonPropertyName("cross_unrealised_pnl")]
public decimal? CrossUnrealizedPnl { get; set; }
/// <summary>
/// Isolated position margin
/// </summary>
[JsonPropertyName("isolated_position_margin")]
public decimal? IsolatedPositionMargin { get; set; }
/// <summary>
/// Cross available
/// </summary>
[JsonPropertyName("cross_available")]
public decimal? CrossAvailable { get; set; }
/// <summary>
/// Total history
/// </summary>
[JsonPropertyName("history")]
Expand Down

0 comments on commit f893cd5

Please sign in to comment.