Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1004 Bytes

File metadata and controls

29 lines (20 loc) · 1004 Bytes

TokenUserFactorProfile

Properties

Name Type Description Notes
credential_id str [optional]

Example

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]