aboutsummaryrefslogtreecommitdiff
path: root/markets/balance.go
blob: cd46ac92916d4020717a8dfdbed584e3a9176fa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}