Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 934 Bytes

File metadata and controls

29 lines (20 loc) · 934 Bytes

TotpUserFactor

Properties

Name Type Description Notes
profile TotpUserFactorProfile [optional]

Example

from okta.models.totp_user_factor import TotpUserFactor

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

# convert the object into a dict
totp_user_factor_dict = totp_user_factor_instance.to_dict()
# create an instance of TotpUserFactor from a dict
totp_user_factor_from_dict = TotpUserFactor.from_dict(totp_user_factor_dict)

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