Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

HardwareUserFactorProfile

Properties

Name Type Description Notes
credential_id str [optional]

Example

from okta.models.hardware_user_factor_profile import HardwareUserFactorProfile

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

# convert the object into a dict
hardware_user_factor_profile_dict = hardware_user_factor_profile_instance.to_dict()
# create an instance of HardwareUserFactorProfile from a dict
hardware_user_factor_profile_from_dict = HardwareUserFactorProfile.from_dict(hardware_user_factor_profile_dict)

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