Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 991 Bytes

File metadata and controls

29 lines (20 loc) · 991 Bytes

TotpUserFactorProfile

Properties

Name Type Description Notes
credential_id str [optional]

Example

from okta.models.totp_user_factor_profile import TotpUserFactorProfile

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

# convert the object into a dict
totp_user_factor_profile_dict = totp_user_factor_profile_instance.to_dict()
# create an instance of TotpUserFactorProfile from a dict
totp_user_factor_profile_from_dict = TotpUserFactorProfile.from_dict(totp_user_factor_profile_dict)

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