Skip to content

Commit

Permalink
Updated user trade model
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Jan 19, 2024
1 parent 74f628a commit cd4b879
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions ByBit.Net/Objects/Models/V5/BybitUserTrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ public class BybitUserTrade
/// </summary>
public bool IsMaker { get; set; }
/// <summary>
/// Is leverage
/// Spot trading fee asset
/// </summary>
[JsonConverter(typeof(EnumConverter))]
public bool? IsLeverage { get; set; }
[JsonProperty("feeCurrency")]
public string? FeeAsset { get; set; }
/// <summary>
/// Fee rate
/// </summary>
Expand Down Expand Up @@ -131,5 +131,10 @@ public class BybitUserTrade
/// </summary>
[JsonProperty("closedSize")]
public decimal? ClosedQuantity { get; set; }
/// <summary>
/// Cross sequence, used to associate each fill and each position update
/// </summary>
[JsonProperty("seq")]
public long? Sequence { get; set; }
}
}

0 comments on commit cd4b879

Please sign in to comment.