| Name | Type | Description | Notes |
|---|---|---|---|
| settings | BehaviorRuleSettingsAnomalousLocation | [optional] |
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)