Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

AuthorizationServerPolicyRule

Properties

Name Type Description Notes
actions AuthorizationServerPolicyRuleActions [optional]
conditions AuthorizationServerPolicyRuleConditions [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]