Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 919 Bytes

File metadata and controls

29 lines (20 loc) · 919 Bytes

SmsUserFactor

Properties

Name Type Description Notes
profile SmsUserFactorProfile [optional]

Example

from okta.models.sms_user_factor import SmsUserFactor

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

# convert the object into a dict
sms_user_factor_dict = sms_user_factor_instance.to_dict()
# create an instance of SmsUserFactor from a dict
sms_user_factor_from_dict = SmsUserFactor.from_dict(sms_user_factor_dict)

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