Point#

class Point(value=None, timestamp=None, *args, **kwargs)[source]#

Bases: object

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

  • timestamp – (timestamp) The timestamp of the metric value.

property timestamp#

The timestamp of the metric value.

Type:

datetime

to_dict()[source]#

Returns the model properties as a dictionary

to_str()[source]#

Returns the string representation of the model

property value#

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:

StrVal | BoolVal | IntVal | DoubleVal | StrList | BoolList | IntList | DoubleList