Class: Google::Apis::GmailV1::ListHistoryResponse
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::ListHistoryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/gmail_v1/classes.rb,
generated/google/apis/gmail_v1/representations.rb,
generated/google/apis/gmail_v1/representations.rb
Instance Attribute Summary collapse
-
#history ⇒ Array<Google::Apis::GmailV1::History>
List of history records.
-
#history_id ⇒ Fixnum
The ID of the mailbox's current history record.
-
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListHistoryResponse
constructor
A new instance of ListHistoryResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListHistoryResponse
Returns a new instance of ListHistoryResponse
699 700 701 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 699 def initialize(**args) update!(**args) end |
Instance Attribute Details
#history ⇒ Array<Google::Apis::GmailV1::History>
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
687 688 689 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 687 def history @history end |
#history_id ⇒ Fixnum
The ID of the mailbox's current history record.
Corresponds to the JSON property historyId
692 693 694 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 692 def history_id @history_id end |
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Corresponds to the JSON property nextPageToken
697 698 699 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 697 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
704 705 706 707 708 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 704 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 |