Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluation
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluation
- 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
Instance Attribute Summary collapse
-
#complete_time ⇒ String
Corresponds to the JSON property
completeTime. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#evaluation_status ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationStatus
Corresponds to the JSON property
evaluationStatus. -
#generator_evaluation_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfig
Corresponds to the JSON property
generatorEvaluationConfig. -
#initial_generator ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Generator
Corresponds to the JSON property
initialGenerator. -
#name ⇒ String
Corresponds to the JSON property
name. -
#satisfies_pzi ⇒ Boolean
(also: #satisfies_pzi?)
Corresponds to the JSON property
satisfiesPzi. -
#satisfies_pzs ⇒ Boolean
(also: #satisfies_pzs?)
Corresponds to the JSON property
satisfiesPzs. -
#summarization_metrics ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SummarizationEvaluationMetrics
Corresponds to the JSON property
summarizationMetrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorEvaluation
constructor
A new instance of GoogleCloudDialogflowV2GeneratorEvaluation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorEvaluation
Returns a new instance of GoogleCloudDialogflowV2GeneratorEvaluation.
10522 10523 10524 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10522 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_time ⇒ String
Corresponds to the JSON property completeTime
10473 10474 10475 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10473 def complete_time @complete_time end |
#create_time ⇒ String
Corresponds to the JSON property createTime
10478 10479 10480 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10478 def create_time @create_time end |
#display_name ⇒ String
Corresponds to the JSON property displayName
10483 10484 10485 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10483 def display_name @display_name end |
#evaluation_status ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationStatus
Corresponds to the JSON property evaluationStatus
10488 10489 10490 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10488 def evaluation_status @evaluation_status end |
#generator_evaluation_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfig
Corresponds to the JSON property generatorEvaluationConfig
10493 10494 10495 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10493 def generator_evaluation_config @generator_evaluation_config end |
#initial_generator ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Generator
Corresponds to the JSON property initialGenerator
10498 10499 10500 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10498 def initial_generator @initial_generator end |
#name ⇒ String
Corresponds to the JSON property name
10503 10504 10505 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10503 def name @name end |
#satisfies_pzi ⇒ Boolean Also known as: satisfies_pzi?
Corresponds to the JSON property satisfiesPzi
10508 10509 10510 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10508 def satisfies_pzi @satisfies_pzi end |
#satisfies_pzs ⇒ Boolean Also known as: satisfies_pzs?
Corresponds to the JSON property satisfiesPzs
10514 10515 10516 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10514 def satisfies_pzs @satisfies_pzs end |
#summarization_metrics ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SummarizationEvaluationMetrics
Corresponds to the JSON property summarizationMetrics
10520 10521 10522 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10520 def summarization_metrics @summarization_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10527 def update!(**args) @complete_time = args[:complete_time] if args.key?(:complete_time) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @evaluation_status = args[:evaluation_status] if args.key?(:evaluation_status) @generator_evaluation_config = args[:generator_evaluation_config] if args.key?(:generator_evaluation_config) @initial_generator = args[:initial_generator] if args.key?(:initial_generator) @name = args[:name] if args.key?(:name) @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi) @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs) @summarization_metrics = args[:summarization_metrics] if args.key?(:summarization_metrics) end |