Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 883 Bytes

Datum.md

File metadata and controls

29 lines (20 loc) · 883 Bytes

Datum

A single metric value for a timeseries. A null value indicates that no (aggregated/interpolated) value exists for the corresponding timestamp.

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.datum import Datum

# TODO update the JSON string below
json = "{}"
# create an instance of Datum from a JSON string
datum_instance = Datum.from_json(json)
# print the JSON string representation of the object
print Datum.to_json()

# convert the object into a dict
datum_dict = datum_instance.to_dict()
# create an instance of Datum from a dict
datum_form_dict = datum.from_dict(datum_dict)

[Back to Model list] [Back to API list] [Back to README]