Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 949 Bytes

File metadata and controls

29 lines (20 loc) · 949 Bytes

EmailUserFactor

Properties

Name Type Description Notes
profile EmailUserFactorProfile [optional]

Example

from okta.models.email_user_factor import EmailUserFactor

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

# convert the object into a dict
email_user_factor_dict = email_user_factor_instance.to_dict()
# create an instance of EmailUserFactor from a dict
email_user_factor_from_dict = EmailUserFactor.from_dict(email_user_factor_dict)

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