from okta.models.behavior_rule_velocity import BehaviorRuleVelocity
# TODO update the JSON string below
json = "{}"
# create an instance of BehaviorRuleVelocity from a JSON string
behavior_rule_velocity_instance = BehaviorRuleVelocity.from_json(json)
# print the JSON string representation of the object
print(BehaviorRuleVelocity.to_json())
# convert the object into a dict
behavior_rule_velocity_dict = behavior_rule_velocity_instance.to_dict()
# create an instance of BehaviorRuleVelocity from a dict
behavior_rule_velocity_from_dict = BehaviorRuleVelocity.from_dict(behavior_rule_velocity_dict)
[Back to Model list] [Back to API list] [Back to README]