Class: Google::Apis::GmailV1::ListThreadsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gmail_v1/classes.rb,
lib/google/apis/gmail_v1/representations.rb,
lib/google/apis/gmail_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListThreadsResponse

Returns a new instance of ListThreadsResponse.



1168
1169
1170
# File 'lib/google/apis/gmail_v1/classes.rb', line 1168

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Page token to retrieve the next page of results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1154
1155
1156
# File 'lib/google/apis/gmail_v1/classes.rb', line 1154

def next_page_token
  @next_page_token
end

#result_size_estimateFixnum

Estimated total number of results. Corresponds to the JSON property resultSizeEstimate

Returns:

  • (Fixnum)


1159
1160
1161
# File 'lib/google/apis/gmail_v1/classes.rb', line 1159

def result_size_estimate
  @result_size_estimate
end

#threadsArray<Google::Apis::GmailV1::Thread>

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

Returns:



1166
1167
1168
# File 'lib/google/apis/gmail_v1/classes.rb', line 1166

def threads
  @threads
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1173
1174
1175
1176
1177
# File 'lib/google/apis/gmail_v1/classes.rb', line 1173

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