Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1003 Bytes

MetricsThreshold.md

File metadata and controls

30 lines (21 loc) · 1003 Bytes

MetricsThreshold

Properties

Name Type Description Notes
value_from str [optional]
value MetricsValueUnit [optional]

Example

from onelens_backend_client.models.metrics_threshold import MetricsThreshold

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

# convert the object into a dict
metrics_threshold_dict = metrics_threshold_instance.to_dict()
# create an instance of MetricsThreshold from a dict
metrics_threshold_form_dict = metrics_threshold.from_dict(metrics_threshold_dict)

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