Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Binance.API.Csharp.Client.Models/Account/CanceledOrder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class CanceledOrder
[JsonProperty("symbol")]
public string Symbol { get; set; }
[JsonProperty("orderId")]
public int OrderId { get; set; }
public long? OrderId { get; set; }
[JsonProperty("clientOrderId")]
public string ClientOrderId { get; set; }
[JsonProperty("origClientOrderId ")]
Expand Down
2 changes: 1 addition & 1 deletion Binance.API.Csharp.Client.Models/Account/NewOrder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class NewOrder
[JsonProperty("symbol")]
public string Symbol { get; set; }
[JsonProperty("orderId")]
public int OrderId { get; set; }
public long? OrderId { get; set; }
[JsonProperty("clientOrderId")]
public string ClientOrderId { get; set; }
[JsonProperty("transactTime")]
Expand Down
2 changes: 1 addition & 1 deletion Binance.API.Csharp.Client.Models/Account/Order.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class Order
[JsonProperty("symbol")]
public string Symbol { get; set; }
[JsonProperty("orderId")]
public int OrderId { get; set; }
public long? OrderId { get; set; }
[JsonProperty("clientOrderId")]
public string ClientOrderId { get; set; }
[JsonProperty("price")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class OrderOrTradeUpdatedMessage
[JsonProperty("r")]
public string RejectReason { get; set; }
[JsonProperty("i")]
public int Orderid { get; set; }
public long? Orderid { get; set; }
[JsonProperty("l")]
public decimal LastFilledTradeQuantity { get; set; }
[JsonProperty("z")]
Expand Down