Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

File metadata and controls

29 lines (20 loc) · 977 Bytes

SmsUserFactorProfile

Properties

Name Type Description Notes
phone_number str [optional]

Example

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]