Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 813 Bytes

File metadata and controls

30 lines (21 loc) · 813 Bytes

Metric

Properties

Name Type Description Notes
measures object
timestamp str

Example

from onelens_backend_client.models.metric import Metric

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

# convert the object into a dict
metric_dict = metric_instance.to_dict()
# create an instance of Metric from a dict
metric_form_dict = metric.from_dict(metric_dict)

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