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