Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Response of ListGeneratorEvaluations.
Instance Attribute Summary collapse
-
#generator_evaluations ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluation>
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) ⇒ GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse
constructor
A new instance of GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse
Returns a new instance of GoogleCloudDialogflowV2ListGeneratorEvaluationsResponse.
15353 15354 15355 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15353 def initialize(**args) update!(**args) end |
Instance Attribute Details
#generator_evaluations ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluation>
The list of evaluations to return.
Corresponds to the JSON property generatorEvaluations
15345 15346 15347 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15345 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
15351 15352 15353 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15351 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15358 15359 15360 15361 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15358 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 |