AI-generated Key Takeaways
- 
          MetricValue represents a single metric's value starting from a specific time. 
- 
          It includes the metric, total aggregated value, and dimensional values. 
- 
          DimensionalMetricValue provides a metric value for a given time dimension. 
- 
          TimeDimension specifies how data is divided, like by day of the week, hour, or a time range. 
A value for a single Metric from a starting time.
| JSON representation | |
|---|---|
| { "metric": enum ( | |
| Fields | |
|---|---|
| metric | 
 The metric for which the value applies. | 
| totalValue | 
 The total aggregated value for this metric. Set for the AGGREGATED_TOTAL option. | 
| dimensionalValues[] | 
 Dimensional values for this metric. | 
DimensionalMetricValue
A value for a single metric with a given time dimension.
| JSON representation | |
|---|---|
| { "metricOption": enum ( | |
| Fields | |
|---|---|
| metricOption | 
 The option that requested this dimensional value. | 
| timeDimension | 
 The dimension for the value. | 
| value | 
 The value. If no value is set, then the requested data is missing. | 
TimeDimension
The dimension for which data is divided over.
| JSON representation | |
|---|---|
| { "dayOfWeek": enum ( | |
| Fields | |
|---|---|
| dayOfWeek | 
 The day of the week ("MONDAY" to "SUNDAY") this value corresponds to. Set for BREAKDOWN_DAY_OF_WEEK option. | 
| timeOfDay | 
 The hour of the day (0 to 23) this value corresponds to. Set for BREAKDOWN_HOUR_OF_DAY option. | 
| timeRange | 
 The range of time this value covers. Set for AGGREGATED_TOTAL and AGGREGATED_DAILY options. |