Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

BehaviorRuleAnomalousIP

Properties

Name Type Description Notes
settings BehaviorRuleSettingsAnomalousIP [optional]

Example

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)

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