TimeSeries#

class TimeSeries(sampling_interval_secs=None, values=None, *args, **kwargs)#

Bases: object

List of points for the time series data.

Parameters:
  • sampling_interval_secs – (sampling_interval_secs) The interval value is used to resample the queried time series data by using down_sampling_operator operator. The default is 86400 seconds.

  • values – (values) The data point value at the specified timestamp, this value can either be an integer, boolean, string, double, or a list of these types.

property sampling_interval_secs#

The interval value is used to resample the queried time series data by using down_sampling_operator operator. The default is 86400 seconds.

Type:

int

to_dict()#

Returns the model properties as a dictionary

to_str()#

Returns the string representation of the model

property values#

The data point value at the specified timestamp, this value can either be an integer, boolean, string, double, or a list of these types.

Type:

list[ Point ]