Add segment data enriching to fields and group by.

This commit is contained in:
Jim Myers 2020-08-25 20:49:33 -04:00
parent bab9e45e80
commit b5f02e740e
2 changed files with 2 additions and 0 deletions

View File

@ -7,4 +7,5 @@ type Field struct {
DecimalAdjustment int `json:"decimal_adjustment"`
ToNegative bool `json:"to_negative"`
Datasets []Dataset `json:"datasets"`
Segments []string `json:"segments"`
}

View File

@ -9,4 +9,5 @@ type GroupBy struct {
StartDate string `json:"start_date"`
EndDate string `json:"end_date"`
Datasets []Dataset `json:"datasets"`
Segments []string `json:"segments"`
}