Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

File metadata and controls

33 lines (24 loc) · 1.4 KB

MailLog

Paginated mail log response returned by GET /mail/log. Contains the full matched count (total) plus a page of MailLogEntry records. Use skip and limit to page through large result sets.

Properties

Name Type Description Notes
total int Total number of log entries that match the supplied filters, regardless of `skip` and `limit`. Use this to calculate the number of pages: `ceil(total / limit)`.
skip int The `skip` value used for this page (echoed from the request).
limit int The `limit` value used for this page (echoed from the request).
emails List[MailLogEntry]

Example

from openapi_client.models.mail_log import MailLog

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

# convert the object into a dict
mail_log_dict = mail_log_instance.to_dict()
# create an instance of MailLog from a dict
mail_log_from_dict = MailLog.from_dict(mail_log_dict)

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