| Name | Type | Description | Notes |
|---|---|---|---|
| profile | TokenUserFactorProfile | [optional] |
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)