Class: Mailtrap::EmailLogsListResponse
- Inherits:
-
Struct
- Object
- Struct
- Mailtrap::EmailLogsListResponse
- Defined in:
- lib/mailtrap/email_logs_list_response.rb
Overview
Response from listing email logs (paginated)
Instance Attribute Summary collapse
-
#messages ⇒ Array<EmailLogMessage>
readonly
Page of message summaries.
-
#next_page_cursor ⇒ String?
readonly
Message UUID to use as search_after for next page, or nil.
-
#total_count ⇒ Integer
readonly
Total number of messages matching filters.
Instance Attribute Details
#messages ⇒ Array<EmailLogMessage> (readonly)
Page of message summaries
9 10 11 |
# File 'lib/mailtrap/email_logs_list_response.rb', line 9 def @messages end |
#next_page_cursor ⇒ String? (readonly)
Message UUID to use as search_after for next page, or nil
9 10 11 |
# File 'lib/mailtrap/email_logs_list_response.rb', line 9 def next_page_cursor @next_page_cursor end |
#total_count ⇒ Integer (readonly)
Total number of messages matching filters
9 10 11 |
# File 'lib/mailtrap/email_logs_list_response.rb', line 9 def total_count @total_count end |