TimeSeries

Represents a timeseries.

JSON representation
{
  "datedValues": [
    {
      object (DatedValue)
    }
  ]
}
Fields
datedValues[]

object (DatedValue)

List of datapoints in the timeseries, where each datapoint is a date-value pair.

DatedValue

Represents a single datapoint in the timeseries, where each datapoint is a date-value pair.

JSON representation
{
  "date": {
    object (Date)
  },
  "value": string
}
Fields
date

object (Date)

The date that the datapoint corresponds to. This represents a month value if the day field is not set.

value

string (int64 format)

The value of the datapoint. This will not be present when the value is zero.