| Name | Type | Description | Notes |
|---|---|---|---|
| properties | PasswordPolicyRecoveryEmailProperties | [optional] | |
| status | LifecycleStatus | [optional] |
from okta.models.password_policy_recovery_email import PasswordPolicyRecoveryEmail
# TODO update the JSON string below
json = "{}"
# create an instance of PasswordPolicyRecoveryEmail from a JSON string
password_policy_recovery_email_instance = PasswordPolicyRecoveryEmail.from_json(json)
# print the JSON string representation of the object
print(PasswordPolicyRecoveryEmail.to_json())
# convert the object into a dict
password_policy_recovery_email_dict = password_policy_recovery_email_instance.to_dict()
# create an instance of PasswordPolicyRecoveryEmail from a dict
password_policy_recovery_email_from_dict = PasswordPolicyRecoveryEmail.from_dict(password_policy_recovery_email_dict)