package markets import ( "github.com/shopspring/decimal" ) type Balance struct { Amount decimal.Decimal `json:"amount"` BTCValue decimal.Decimal `json:"btcValue"` } type Summary struct { Balances map[string]Balance BTCValue decimal.Decimal }