mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
18 lines
586 B
Go
18 lines
586 B
Go
package glassnode
|
|
|
|
import "github.com/c9s/requestgen"
|
|
|
|
//go:generate requestgen -method GET -type InstitutionsRequest -url "/v1/metrics/institutions/:metric" -responseType Response
|
|
type InstitutionsRequest struct {
|
|
Client requestgen.AuthenticatedAPIClient
|
|
|
|
Asset string `param:"a,required,query"`
|
|
Since int64 `param:"s,query"`
|
|
Until int64 `param:"u,query"`
|
|
Interval Interval `param:"i,query"`
|
|
Format Format `param:"f,query"`
|
|
TimestampFormat string `param:"timestamp_format,query"`
|
|
|
|
Metric string `param:"metric,slug"`
|
|
}
|