Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

CustomHotpUserFactor

Properties

Name Type Description Notes
factor_profile_id str [optional]
profile CustomHotpUserFactorProfile [optional]

Example

from okta.models.custom_hotp_user_factor import CustomHotpUserFactor

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

# convert the object into a dict
custom_hotp_user_factor_dict = custom_hotp_user_factor_instance.to_dict()
# create an instance of CustomHotpUserFactor from a dict
custom_hotp_user_factor_from_dict = CustomHotpUserFactor.from_dict(custom_hotp_user_factor_dict)

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