| 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] |
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)