Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListGeneratorEvaluationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListGeneratorEvaluationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Response of ListGeneratorEvaluations.
Instance Attribute Summary collapse
-
#generator_evaluations ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluation>
The list of evaluations to return.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ListGeneratorEvaluationsResponse
constructor
A new instance of GoogleCloudDialogflowV2beta1ListGeneratorEvaluationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ListGeneratorEvaluationsResponse
Returns a new instance of GoogleCloudDialogflowV2beta1ListGeneratorEvaluationsResponse.
19543 19544 19545 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 19543 def initialize(**args) update!(**args) end |
Instance Attribute Details
#generator_evaluations ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluation>
The list of evaluations to return.
Corresponds to the JSON property generatorEvaluations
19535 19536 19537 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 19535 def generator_evaluations @generator_evaluations end |
#next_page_token ⇒ String
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
19541 19542 19543 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 19541 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19548 19549 19550 19551 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 19548 def update!(**args) @generator_evaluations = args[:generator_evaluations] if args.key?(:generator_evaluations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |