Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

CallUserFactorProfile

Properties

Name Type Description Notes
phone_extension str [optional]
phone_number str [optional]

Example

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]