Class: Google::Apis::ChatV1::ListMessagesResponse

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

Overview

Response message for listing messages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListMessagesResponse

Returns a new instance of ListMessagesResponse.



3451
3452
3453
# File 'lib/google/apis/chat_v1/classes.rb', line 3451

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

Instance Attribute Details

#messagesArray<Google::Apis::ChatV1::Message>

List of messages. Corresponds to the JSON property messages

Returns:



3443
3444
3445
# File 'lib/google/apis/chat_v1/classes.rb', line 3443

def messages
  @messages
end

#next_page_tokenString

You can send a token as pageToken to retrieve the next page of results. If empty, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3449
3450
3451
# File 'lib/google/apis/chat_v1/classes.rb', line 3449

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3456
3457
3458
3459
# File 'lib/google/apis/chat_v1/classes.rb', line 3456

def update!(**args)
  @messages = args[:messages] if args.key?(:messages)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end