flip-rpc-client-go/dynamicquery/group_by.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"`
}