class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListAnswerRecordsResponse

Response message for AnswerRecords.ListAnswerRecords.

Attributes

answer_records[RW]

The list of answer records. Corresponds to the JSON property `answerRecords` @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerRecord>]

next_page_token[RW]

A token to retrieve next page of results. Or empty if there are no more results. Pass this value in the ListAnswerRecordsRequest.page_token field in the subsequent call to `ListAnswerRecords` method to retrieve the next page of results. 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 12258
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 12263
def update!(**args)
  @answer_records = args[:answer_records] if args.key?(:answer_records)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end