Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

BehaviorRuleAnomalousDevice

Properties

Name Type Description Notes
settings BehaviorRuleSettingsAnomalousDevice [optional]

Example

from okta.models.behavior_rule_anomalous_device import BehaviorRuleAnomalousDevice

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

# convert the object into a dict
behavior_rule_anomalous_device_dict = behavior_rule_anomalous_device_instance.to_dict()
# create an instance of BehaviorRuleAnomalousDevice from a dict
behavior_rule_anomalous_device_from_dict = BehaviorRuleAnomalousDevice.from_dict(behavior_rule_anomalous_device_dict)

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