Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

BehaviorRuleSettingsAnomalousDevice

Properties

Name Type Description Notes
max_events_used_for_evaluation int [optional] [default to 20]
min_events_needed_for_evaluation int [optional] [default to 0]

Example

from okta.models.behavior_rule_settings_anomalous_device import BehaviorRuleSettingsAnomalousDevice

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

# convert the object into a dict
behavior_rule_settings_anomalous_device_dict = behavior_rule_settings_anomalous_device_instance.to_dict()
# create an instance of BehaviorRuleSettingsAnomalousDevice from a dict
behavior_rule_settings_anomalous_device_from_dict = BehaviorRuleSettingsAnomalousDevice.from_dict(behavior_rule_settings_anomalous_device_dict)

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