Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 979 Bytes

Measurements.md

File metadata and controls

29 lines (20 loc) · 979 Bytes

Measurements

Values in an Event payload. Note that only scalar data is stored in the timeseries, while Arrays and objects are only stored in the Message Cache.

Properties

Name Type Description Notes

Example

from waylay.services.data.models.measurements import Measurements

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

# convert the object into a dict
measurements_dict = measurements_instance.to_dict()
# create an instance of Measurements from a dict
measurements_form_dict = measurements.from_dict(measurements_dict)

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