Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

AvailableNumber

Properties

Name Type Description Notes
capabilities Capabilities [optional]
campaign_id str The campaign ID generated by the campaign registry [optional]
phone_number str The phone number, in E.164 format (+ country code and phone number: +18003608245). [optional]
region str The state or province of this phone number. [optional]
country str The country of this phone number. [optional]

Example

from freeclimb.models.available_number import AvailableNumber

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

# convert the object into a dict
available_number_dict = available_number_instance.to_dict()
# create an instance of AvailableNumber from a dict
available_number_from_dict = AvailableNumber.from_dict(available_number_dict)

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