class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListConversationsResponse

The response message for Conversations.ListConversations.

Attributes

conversations[RW]

The list of conversations. There will be a maximum number of items returned based on the page_size field in the request. Corresponds to the JSON property `conversations` @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Conversation>]

next_page_token[RW]

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 12339
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 12344
def update!(**args)
  @conversations = args[:conversations] if args.key?(:conversations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end