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