| Name | Type | Description | Notes |
|---|---|---|---|
| app_sign_on | AccessPolicyRuleApplicationSignOn | [optional] |
from okta.models.access_policy_rule_actions import AccessPolicyRuleActions
# TODO update the JSON string below
json = "{}"
# create an instance of AccessPolicyRuleActions from a JSON string
access_policy_rule_actions_instance = AccessPolicyRuleActions.from_json(json)
# print the JSON string representation of the object
print(AccessPolicyRuleActions.to_json())
# convert the object into a dict
access_policy_rule_actions_dict = access_policy_rule_actions_instance.to_dict()
# create an instance of AccessPolicyRuleActions from a dict
access_policy_rule_actions_from_dict = AccessPolicyRuleActions.from_dict(access_policy_rule_actions_dict)