Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.91 KB

File metadata and controls

39 lines (30 loc) · 1.91 KB

AuthorizationServerPolicyRule

Properties

Name Type Description Notes
actions AuthorizationServerPolicyRuleActions [optional]
conditions AuthorizationServerPolicyRuleConditions [optional]
created datetime Timestamp when the rule was created [optional] [readonly]
id str Identifier of the rule [optional] [readonly]
last_updated datetime Timestamp when the rule was last modified [optional] [readonly]
name str Name of the rule [optional]
priority int Priority of the rule [optional]
status str Status of the rule [optional]
system bool Set to `true` for system rules. You can't delete system rules. [optional]
type str Rule type [optional]
links LinksSelfAndLifecycle [optional]

Example

from okta.models.authorization_server_policy_rule import AuthorizationServerPolicyRule

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

# convert the object into a dict
authorization_server_policy_rule_dict = authorization_server_policy_rule_instance.to_dict()
# create an instance of AuthorizationServerPolicyRule from a dict
authorization_server_policy_rule_from_dict = AuthorizationServerPolicyRule.from_dict(authorization_server_policy_rule_dict)

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