Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 919 Bytes

File metadata and controls

29 lines (20 loc) · 919 Bytes

WebUserFactor

Properties

Name Type Description Notes
profile WebUserFactorProfile [optional]

Example

from okta.models.web_user_factor import WebUserFactor

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

# convert the object into a dict
web_user_factor_dict = web_user_factor_instance.to_dict()
# create an instance of WebUserFactor from a dict
web_user_factor_from_dict = WebUserFactor.from_dict(web_user_factor_dict)

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