class Google::Apis::GmailV1::ListThreadsResponse
Attributes
next_page_token[RW]
Page token to retrieve the next page of results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
result_size_estimate[RW]
Estimated total number of results. Corresponds to the JSON property `resultSizeEstimate` @return [Fixnum]
threads[RW]
List of threads. Note that each thread resource does not contain a list of ` messages`. The list of `messages` for a given thread can be fetched using the threads.get method. Corresponds to the JSON property `threads` @return [Array<Google::Apis::GmailV1::Thread>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gmail_v1/classes.rb, line 914 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 919 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @result_size_estimate = args[:result_size_estimate] if args.key?(:result_size_estimate) @threads = args[:threads] if args.key?(:threads) end