| Name | Type | Description | Notes |
|---|---|---|---|
| settings | BehaviorRuleSettingsAnomalousIP | [optional] |
from okta.models.behavior_rule_anomalous_ip import BehaviorRuleAnomalousIP
# TODO update the JSON string below
json = "{}"
# create an instance of BehaviorRuleAnomalousIP from a JSON string
behavior_rule_anomalous_ip_instance = BehaviorRuleAnomalousIP.from_json(json)
# print the JSON string representation of the object
print(BehaviorRuleAnomalousIP.to_json())
# convert the object into a dict
behavior_rule_anomalous_ip_dict = behavior_rule_anomalous_ip_instance.to_dict()
# create an instance of BehaviorRuleAnomalousIP from a dict
behavior_rule_anomalous_ip_from_dict = BehaviorRuleAnomalousIP.from_dict(behavior_rule_anomalous_ip_dict)