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. Corresponds to the JSON property `threads` @return [Array<Google::Apis::GmailV1::Thread>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/gmail_v1/classes.rb, line 415
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/gmail_v1/classes.rb, line 420
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