Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

File metadata and controls

35 lines (26 loc) · 1.17 KB

BehaviorRule

Properties

Name Type Description Notes
created datetime [optional] [readonly]
id str [optional] [readonly]
last_updated datetime [optional] [readonly]
name str
status LifecycleStatus [optional]
type BehaviorRuleType
link LinksSelf [optional]

Example

from okta.models.behavior_rule import BehaviorRule

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

# convert the object into a dict
behavior_rule_dict = behavior_rule_instance.to_dict()
# create an instance of BehaviorRule from a dict
behavior_rule_from_dict = BehaviorRule.from_dict(behavior_rule_dict)

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