Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

PasswordPolicyRecoveryEmail

Properties

Name Type Description Notes
properties PasswordPolicyRecoveryEmailProperties [optional]
status LifecycleStatus [optional]

Example

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)

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