Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

BehaviorRuleSettingsVelocity

Properties

Name Type Description Notes
velocity_kph int [default to 805]

Example

from okta.models.behavior_rule_settings_velocity import BehaviorRuleSettingsVelocity

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

# convert the object into a dict
behavior_rule_settings_velocity_dict = behavior_rule_settings_velocity_instance.to_dict()
# create an instance of BehaviorRuleSettingsVelocity from a dict
behavior_rule_settings_velocity_from_dict = BehaviorRuleSettingsVelocity.from_dict(behavior_rule_settings_velocity_dict)

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