Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 827 Bytes

Deviation.md

File metadata and controls

29 lines (20 loc) · 827 Bytes

Deviation

The percentage delta of the anomaly.

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.deviation import Deviation

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

# convert the object into a dict
deviation_dict = deviation_instance.to_dict()
# create an instance of Deviation from a dict
deviation_form_dict = deviation.from_dict(deviation_dict)

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