Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.52 KB

File metadata and controls

32 lines (23 loc) · 1.52 KB

BehaviorRuleSettingsAnomalousLocation

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]
granularity LocationGranularity
radius_kilometers int Required when `granularity` is `LAT_LONG`. Radius from the provided coordinates in kilometers. [optional]

Example

from okta.models.behavior_rule_settings_anomalous_location import BehaviorRuleSettingsAnomalousLocation

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

# convert the object into a dict
behavior_rule_settings_anomalous_location_dict = behavior_rule_settings_anomalous_location_instance.to_dict()
# create an instance of BehaviorRuleSettingsAnomalousLocation from a dict
behavior_rule_settings_anomalous_location_from_dict = BehaviorRuleSettingsAnomalousLocation.from_dict(behavior_rule_settings_anomalous_location_dict)

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