class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListMessagesResponse
The response message for Conversations.ListMessages.
Attributes
messages[RW]
Required. The list of messages. There will be a maximum number of items returned based on the page_size field in the request. `messages` is sorted by ` create_time` in descending order. Corresponds to the JSON property `messages` @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Message>]
next_page_token[RW]
Optional. Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 12500 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 12505 def update!(**args) @messages = args[:messages] if args.key?(:messages) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end