Skip to content

Commit

Permalink
Fixing issue with fetching subaccount id for deposit history (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
mceprnja-codemage authored Aug 28, 2024
1 parent ce63ef6 commit 94984de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public record BinanceBrokerageSubAccountDepositTransaction
/// <summary>
/// Sub Account Id
/// </summary>
[JsonPropertyName("subaccountId")]
[JsonPropertyName("subAccountId")]
public string SubAccountId { get; set; } = string.Empty;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public record BinanceBrokerageTransferResult
/// Transaction Id
/// </summary>
[JsonPropertyName("txnId")]
public string Id { get; set; } = string.Empty;
public long Id { get; set; }

/// <summary>
/// Client Transfer Id
Expand Down

0 comments on commit 94984de

Please sign in to comment.