Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 996 Bytes

File metadata and controls

29 lines (20 loc) · 996 Bytes

EmailUserFactorProfile

Properties

Name Type Description Notes
email str [optional]

Example

from okta.models.email_user_factor_profile import EmailUserFactorProfile

# TODO update the JSON string below
json = "{}"
# create an instance of EmailUserFactorProfile from a JSON string
email_user_factor_profile_instance = EmailUserFactorProfile.from_json(json)
# print the JSON string representation of the object
print(EmailUserFactorProfile.to_json())

# convert the object into a dict
email_user_factor_profile_dict = email_user_factor_profile_instance.to_dict()
# create an instance of EmailUserFactorProfile from a dict
email_user_factor_profile_from_dict = EmailUserFactorProfile.from_dict(email_user_factor_profile_dict)

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