Skip to content

Commit

Permalink
Added EffectiveLeverage to GetSpotMarginStatusAndLeverageAsync response
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Jan 19, 2024
1 parent cd4b879 commit bbfc239
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ByBit.Net/Objects/Models/V5/BybitSpotMarginLeverageStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,10 @@ public class BybitSpotMarginLeverageStatus
/// </summary>
[JsonProperty("spotMarginMode"), JsonConverter(typeof(BoolConverter))]
public bool SpotMarginMode { get; set; }
/// <summary>
/// Actual leverage ratio
/// </summary>
[JsonProperty("effectiveLeverage")]
public decimal? EffectiveLeverage { get; set; }
}
}

0 comments on commit bbfc239

Please sign in to comment.