| Name |
Type |
Description |
Notes |
| credential_id |
str |
|
[optional] |
from okta.models.token_user_factor_profile import TokenUserFactorProfile
# TODO update the JSON string below
json = "{}"
# create an instance of TokenUserFactorProfile from a JSON string
token_user_factor_profile_instance = TokenUserFactorProfile.from_json(json)
# print the JSON string representation of the object
print(TokenUserFactorProfile.to_json())
# convert the object into a dict
token_user_factor_profile_dict = token_user_factor_profile_instance.to_dict()
# create an instance of TokenUserFactorProfile from a dict
token_user_factor_profile_from_dict = TokenUserFactorProfile.from_dict(token_user_factor_profile_dict)
[Back to Model list] [Back to API list] [Back to README]