mirror of
https://github.com/FlipsideCrypto/flip-rpc-client-go.git
synced 2026-02-06 10:56:45 +00:00
14 lines
390 B
Go
14 lines
390 B
Go
package dynamicquery
|
|
|
|
// GroupBy a set of fields
|
|
type GroupBy struct {
|
|
Field string `json:"field"`
|
|
Label string `json:"label"`
|
|
Timebucket string `json:"timebucket"`
|
|
Gapfill bool `json:"gapfill"`
|
|
StartDate string `json:"start_date"`
|
|
EndDate string `json:"end_date"`
|
|
Datasets []Dataset `json:"datasets"`
|
|
Segments []string `json:"segments"`
|
|
}
|