Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 994 Bytes

File metadata and controls

29 lines (20 loc) · 994 Bytes

HardwareUserFactor

Properties

Name Type Description Notes
profile HardwareUserFactorProfile [optional]

Example

from okta.models.hardware_user_factor import HardwareUserFactor

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

# convert the object into a dict
hardware_user_factor_dict = hardware_user_factor_instance.to_dict()
# create an instance of HardwareUserFactor from a dict
hardware_user_factor_from_dict = HardwareUserFactor.from_dict(hardware_user_factor_dict)

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