mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
12 lines
199 B
Go
12 lines
199 B
Go
package ftx
|
|
|
|
type balances struct {
|
|
Success bool `json:"Success"`
|
|
|
|
Result []struct {
|
|
Coin string `json:"coin"`
|
|
Free float64 `json:"free"`
|
|
Total float64 `json:"total"`
|
|
} `json:"result"`
|
|
}
|