Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.52 KB

InboundCallResponse.md

File metadata and controls

39 lines (30 loc) · 1.52 KB

InboundCallResponse

Properties

Name Type Description Notes
callchimp_number InboundCallResponseCallchimpNumber [optional]
created_at datetime [optional]
dial_status str [optional]
duration int Call duration in seconds [optional]
hangup_cause str [optional]
id int [optional]
inbound_caller str [optional]
is_answered bool [optional]
organization int [optional]
supervisor InboundCallResponseSupervisor [optional]
supervisor_number str [optional]

Example

from callchimp.models.inbound_call_response import InboundCallResponse

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

# convert the object into a dict
inbound_call_response_dict = inbound_call_response_instance.to_dict()
# create an instance of InboundCallResponse from a dict
inbound_call_response_from_dict = InboundCallResponse.from_dict(inbound_call_response_dict)

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