| Name | Type | Description | Notes |
|---|---|---|---|
| profile | WebUserFactorProfile | [optional] |
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)