Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 978 Bytes

File metadata and controls

29 lines (20 loc) · 978 Bytes

WebUserFactorProfile

Properties

Name Type Description Notes
credential_id str [optional]

Example

from okta.models.web_user_factor_profile import WebUserFactorProfile

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

# convert the object into a dict
web_user_factor_profile_dict = web_user_factor_profile_instance.to_dict()
# create an instance of WebUserFactorProfile from a dict
web_user_factor_profile_from_dict = WebUserFactorProfile.from_dict(web_user_factor_profile_dict)

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