Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig
- 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
The distinctive configs for dataset as the conversation source.
Instance Attribute Summary collapse
-
#dataset ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig
constructor
A new instance of GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig
Returns a new instance of GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig.
12166 12167 12168 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12166 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Required. The identifier of the dataset to be evaluated. Format: projects//
locations//datasets/.
Corresponds to the JSON property dataset
12164 12165 12166 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12164 def dataset @dataset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12171 12172 12173 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12171 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) end |