Summary of channel log status
| Name | Type | Description | Notes |
|---|---|---|---|
| channel_name | str | Channel name | [optional] |
| recipients | int | Number of recipients | [optional] |
| email_total | int | Number of emails | [optional] |
| sms_total | int | Number of SMS | [optional] |
| delivered | int | Number of delivered messages | [optional] |
| bounced | int | Number of bounced messages | [optional] |
| in_progress | int | Number of messages in progress | [optional] |
| opened | int | Number of opened messages | [optional] |
| clicked | int | Number of clicked messages | [optional] |
| unsubscribed | int | Number of unsubscribed messages | [optional] |
| complaints | int | Number of complaint messages | [optional] |
| inbound | int | Number of inbound messages | [optional] |
| manual_cancel | int | Number of manually cancelled messages | [optional] |
| not_delivered | int | Number of messages flagged with 'Not Delivered' | [optional] |
from ElasticEmail.models.channel_log_status_summary import ChannelLogStatusSummary
# TODO update the JSON string below
json = "{}"
# create an instance of ChannelLogStatusSummary from a JSON string
channel_log_status_summary_instance = ChannelLogStatusSummary.from_json(json)
# print the JSON string representation of the object
print(ChannelLogStatusSummary.to_json())
# convert the object into a dict
channel_log_status_summary_dict = channel_log_status_summary_instance.to_dict()
# create an instance of ChannelLogStatusSummary from a dict
channel_log_status_summary_from_dict = ChannelLogStatusSummary.from_dict(channel_log_status_summary_dict)