mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
31 lines
917 B
Go
31 lines
917 B
Go
package bitgetapi
|
|
|
|
//go:generate -command GetRequest requestgen -method GET -responseType .APIResponse -responseDataField Data
|
|
//go:generate -command PostRequest requestgen -method POST -responseType .APIResponse -responseDataField Data
|
|
|
|
import (
|
|
"github.com/c9s/requestgen"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type Depth struct {
|
|
Asks [][]fixedpoint.Value `json:"asks"`
|
|
Bids [][]fixedpoint.Value `json:"bids"`
|
|
Timestamp types.MillisecondTimestamp `json:"timestamp"`
|
|
}
|
|
|
|
//go:generate GetRequest -url "/api/spot/v1/market/depth" -type GetDepthRequest -responseDataType .Depth
|
|
type GetDepthRequest struct {
|
|
client requestgen.APIClient
|
|
|
|
symbol string `param:"symbol"`
|
|
stepType string `param:"type" default:"step0"`
|
|
limit *int `param:"limit"`
|
|
}
|
|
|
|
func (c *RestClient) NewGetDepthRequest() *GetDepthRequest {
|
|
return &GetDepthRequest{client: c}
|
|
}
|