Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

PhoneNumberResponse.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

PhoneNumberResponse

Properties

Name Type Description Notes
created_at datetime [optional]
description str [optional]
id int [optional]
number str Outbound caller id in E.164 format, e.g. `[+][country_code][number]`. [optional]

Example

from callchimp.models.phone_number_response import PhoneNumberResponse

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

# convert the object into a dict
phone_number_response_dict = phone_number_response_instance.to_dict()
# create an instance of PhoneNumberResponse from a dict
phone_number_response_from_dict = PhoneNumberResponse.from_dict(phone_number_response_dict)

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