class Google::Apis::GmailV1::ListHistoryResponse
Attributes
history[RW]
List of history records. Any `messages` contained in the response will typically only have `id` and `threadId` fields populated. Corresponds to the JSON property `history` @return [Array<Google::Apis::GmailV1::History>]
history_id[RW]
The ID of the mailbox's current history record. Corresponds to the JSON property `historyId` @return [Fixnum]
next_page_token[RW]
Page token to retrieve the next page of results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gmail_v1/classes.rb, line 789 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gmail_v1/classes.rb, line 794 def update!(**args) @history = args[:history] if args.key?(:history) @history_id = args[:history_id] if args.key?(:history_id) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end