mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +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"`
|
||
|
}
|