mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-15 15:09:55 +00:00
14 lines
364 B
Go
14 lines
364 B
Go
package main
|
|
|
|
//ExchangeAccountInfo : Generic type to hold each exchange's holdings in all enabled currencies
|
|
type ExchangeAccountInfo struct {
|
|
Currencies []ExchangeAccountCurrencyInfo
|
|
}
|
|
|
|
//ExchangeAccountCurrencyInfo : Sub type to store currency name and value
|
|
type ExchangeAccountCurrencyInfo struct {
|
|
CurrencyName string
|
|
TotalValue int
|
|
Hold int
|
|
}
|