bbgo_origin/pkg/exchange/ftx/responses.go

12 lines
199 B
Go
Raw Normal View History

2021-02-08 10:59:36 +00:00
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"`
}