timeGranularity property

String? timeGranularity
getter/setter pair

The time granularity of each data point in the time series.

Defaults to NONE if this field is unspecified. Possible string values are:

  • "TIME_GRANULARITY_UNSPECIFIED" : The time granularity is unspecified and will default to NONE.
  • "NONE" : No time granularity. The response won't contain a time series. This is the default value if no time granularity is specified.
  • "DAILY" : Data points in the time series will aggregate at a daily granularity. 1 day means [midnight to midnight).
  • "HOURLY" : Data points in the time series will aggregate at a daily granularity. 1 HOUR means [01:00 to 02:00).
  • "PER_MINUTE" : Data points in the time series will aggregate at a daily granularity. PER_MINUTE means [01:00 to 01:01).
  • "PER_5_MINUTES" : Data points in the time series will aggregate at a 1 minute granularity. PER_5_MINUTES means [01:00 to 01:05).
  • "MONTHLY" : Data points in the time series will aggregate at a monthly granularity. 1 MONTH means [01st of the month to 1st of the next month).

Implementation

core.String? timeGranularity;