Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 914 Bytes

Features.md

File metadata and controls

30 lines (21 loc) · 914 Bytes

Features

Properties

Name Type Description Notes
enable_in_policy bool [optional] [default to False]
enable_in_anomalies bool [optional] [default to False]

Example

from onelens_backend_client.models.features import Features

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

# convert the object into a dict
features_dict = features_instance.to_dict()
# create an instance of Features from a dict
features_form_dict = features.from_dict(features_dict)

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