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] |
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)