Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 919 Bytes

File metadata and controls

29 lines (20 loc) · 919 Bytes

U2fUserFactor

Properties

Name Type Description Notes
profile U2fUserFactorProfile [optional]

Example

from okta.models.u2f_user_factor import U2fUserFactor

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

# convert the object into a dict
u2f_user_factor_dict = u2f_user_factor_instance.to_dict()
# create an instance of U2fUserFactor from a dict
u2f_user_factor_from_dict = U2fUserFactor.from_dict(u2f_user_factor_dict)

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