Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.46 KB

CallReportResponse.md

File metadata and controls

34 lines (25 loc) · 1.46 KB

CallReportResponse

Properties

Name Type Description Notes
answered_calls CallReportResponseAnsweredCalls [optional]
campaigns_count int [optional]
queued_calls CallReportResponseAnsweredCalls [optional]
stats List[CallReportResponseStatsInner] [optional]
total_calls CallReportResponseAnsweredCalls [optional]
total_duration CallReportResponseAnsweredCalls [optional]

Example

from callchimp.models.call_report_response import CallReportResponse

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

# convert the object into a dict
call_report_response_dict = call_report_response_instance.to_dict()
# create an instance of CallReportResponse from a dict
call_report_response_from_dict = CallReportResponse.from_dict(call_report_response_dict)

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