Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

InboundCallResponseCallchimpNumber.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

InboundCallResponseCallchimpNumber

Properties

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

Example

from callchimp.models.inbound_call_response_callchimp_number import InboundCallResponseCallchimpNumber

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

# convert the object into a dict
inbound_call_response_callchimp_number_dict = inbound_call_response_callchimp_number_instance.to_dict()
# create an instance of InboundCallResponseCallchimpNumber from a dict
inbound_call_response_callchimp_number_from_dict = InboundCallResponseCallchimpNumber.from_dict(inbound_call_response_callchimp_number_dict)

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