Specifies the results when a user attempts to sign in
| Name | Type | Description | Notes |
|---|---|---|---|
| access | AccessPolicyRuleApplicationSignOnAccess | [optional] | |
| keep_me_signed_in | KeepMeSignedIn | [optional] | |
| verification_method | VerificationMethod | [optional] |
from okta.models.access_policy_rule_application_sign_on import AccessPolicyRuleApplicationSignOn
# TODO update the JSON string below
json = "{}"
# create an instance of AccessPolicyRuleApplicationSignOn from a JSON string
access_policy_rule_application_sign_on_instance = AccessPolicyRuleApplicationSignOn.from_json(json)
# print the JSON string representation of the object
print(AccessPolicyRuleApplicationSignOn.to_json())
# convert the object into a dict
access_policy_rule_application_sign_on_dict = access_policy_rule_application_sign_on_instance.to_dict()
# create an instance of AccessPolicyRuleApplicationSignOn from a dict
access_policy_rule_application_sign_on_from_dict = AccessPolicyRuleApplicationSignOn.from_dict(access_policy_rule_application_sign_on_dict)