Skip to content

Commit

Permalink
Add CurrencyAccountId to AccountBalance struct (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeyreiss authored Nov 10, 2023
1 parent c9a665b commit e0ec54c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions balances/balances.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ type (
}

AccountBalance struct {
Descriptor string `json:"descriptor,omitempty"`
HoldingCurrency string `json:"holding_currency,omitempty"`
Balances Balances `json:"balances,omitempty"`
Descriptor string `json:"descriptor,omitempty"`
CurrencyAccountId string `json:"currency_account_id,omitempty"`
HoldingCurrency string `json:"holding_currency,omitempty"`
Balances Balances `json:"balances,omitempty"`
}

QueryResponse struct {
Expand Down

0 comments on commit e0ec54c

Please sign in to comment.