Class: Google::Apis::ChatV1::ListMessagesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::ListMessagesResponse
- 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
-
#messages ⇒ Array<Google::Apis::ChatV1::Message>
List of messages.
-
#next_page_token ⇒ String
You can send a token as
pageToken
to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListMessagesResponse
constructor
A new instance of ListMessagesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListMessagesResponse
Returns a new instance of ListMessagesResponse.
3480 3481 3482 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#messages ⇒ Array<Google::Apis::ChatV1::Message>
List of messages.
Corresponds to the JSON property messages
3472 3473 3474 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3472 def @messages end |
#next_page_token ⇒ String
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
3478 3479 3480 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3478 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3485 3486 3487 3488 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3485 def update!(**args) @messages = args[:messages] if args.key?(:messages) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |