Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 949 Bytes

File metadata and controls

29 lines (20 loc) · 949 Bytes

TokenUserFactor

Properties

Name Type Description Notes
profile TokenUserFactorProfile [optional]

Example

from okta.models.token_user_factor import TokenUserFactor

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

# convert the object into a dict
token_user_factor_dict = token_user_factor_instance.to_dict()
# create an instance of TokenUserFactor from a dict
token_user_factor_from_dict = TokenUserFactor.from_dict(token_user_factor_dict)

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