Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigSummarizationConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigSummarizationConfig
- 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
Instance Attribute Summary collapse
-
#accuracy_evaluation_version ⇒ String
Corresponds to the JSON property
accuracyEvaluationVersion. -
#completeness_evaluation_version ⇒ String
Corresponds to the JSON property
completenessEvaluationVersion. -
#enable_accuracy_evaluation ⇒ Boolean
(also: #enable_accuracy_evaluation?)
Corresponds to the JSON property
enableAccuracyEvaluation. -
#enable_completeness_evaluation ⇒ Boolean
(also: #enable_completeness_evaluation?)
Corresponds to the JSON property
enableCompletenessEvaluation. -
#evaluator_version ⇒ String
Corresponds to the JSON property
evaluatorVersion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigSummarizationConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigSummarizationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigSummarizationConfig
Returns a new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigSummarizationConfig.
14454 14455 14456 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accuracy_evaluation_version ⇒ String
Corresponds to the JSON property accuracyEvaluationVersion
14430 14431 14432 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14430 def accuracy_evaluation_version @accuracy_evaluation_version end |
#completeness_evaluation_version ⇒ String
Corresponds to the JSON property completenessEvaluationVersion
14435 14436 14437 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14435 def completeness_evaluation_version @completeness_evaluation_version end |
#enable_accuracy_evaluation ⇒ Boolean Also known as: enable_accuracy_evaluation?
Corresponds to the JSON property enableAccuracyEvaluation
14440 14441 14442 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14440 def enable_accuracy_evaluation @enable_accuracy_evaluation end |
#enable_completeness_evaluation ⇒ Boolean Also known as: enable_completeness_evaluation?
Corresponds to the JSON property enableCompletenessEvaluation
14446 14447 14448 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14446 def enable_completeness_evaluation @enable_completeness_evaluation end |
#evaluator_version ⇒ String
Corresponds to the JSON property evaluatorVersion
14452 14453 14454 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14452 def evaluator_version @evaluator_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14459 14460 14461 14462 14463 14464 14465 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14459 def update!(**args) @accuracy_evaluation_version = args[:accuracy_evaluation_version] if args.key?(:accuracy_evaluation_version) @completeness_evaluation_version = args[:completeness_evaluation_version] if args.key?(:completeness_evaluation_version) @enable_accuracy_evaluation = args[:enable_accuracy_evaluation] if args.key?(:enable_accuracy_evaluation) @enable_completeness_evaluation = args[:enable_completeness_evaluation] if args.key?(:enable_completeness_evaluation) @evaluator_version = args[:evaluator_version] if args.key?(:evaluator_version) end |