bbgo_origin/pkg/exchange/ftx/responses.go
2021-02-08 19:07:18 +08:00

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"`
}