| Name | Type | Description | Notes |
|---|---|---|---|
| profile | TotpUserFactorProfile | [optional] |
from okta.models.totp_user_factor import TotpUserFactor
# TODO update the JSON string below
json = "{}"
# create an instance of TotpUserFactor from a JSON string
totp_user_factor_instance = TotpUserFactor.from_json(json)
# print the JSON string representation of the object
print(TotpUserFactor.to_json())
# convert the object into a dict
totp_user_factor_dict = totp_user_factor_instance.to_dict()
# create an instance of TotpUserFactor from a dict
totp_user_factor_from_dict = TotpUserFactor.from_dict(totp_user_factor_dict)