Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

BehaviorRuleAnomalousLocation

Properties

Name Type Description Notes
settings BehaviorRuleSettingsAnomalousLocation [optional]

Example

from okta.models.behavior_rule_anomalous_location import BehaviorRuleAnomalousLocation

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

# convert the object into a dict
behavior_rule_anomalous_location_dict = behavior_rule_anomalous_location_instance.to_dict()
# create an instance of BehaviorRuleAnomalousLocation from a dict
behavior_rule_anomalous_location_from_dict = BehaviorRuleAnomalousLocation.from_dict(behavior_rule_anomalous_location_dict)

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