Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

MailStatsVolume

Top-500 breakdown of message counts within the selected time window, grouped by originating IP, destination address, and sender address.

Properties

Name Type Description Notes
to Dict[str, int] Message counts keyed by destination (envelope `to`) email address. [optional]
var_from Dict[str, int] Message counts keyed by sender (envelope `from`) email address. [optional]
ip Dict[str, int] Message counts keyed by originating client IP address. [optional]

Example

from openapi_client.models.mail_stats_volume import MailStatsVolume

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

# convert the object into a dict
mail_stats_volume_dict = mail_stats_volume_instance.to_dict()
# create an instance of MailStatsVolume from a dict
mail_stats_volume_from_dict = MailStatsVolume.from_dict(mail_stats_volume_dict)

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