Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluation
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluation
- 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
-
#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::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EvaluationStatus
Corresponds to the JSON property
evaluationStatus. -
#generator_evaluation_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfig
Corresponds to the JSON property
generatorEvaluationConfig. -
#initial_generator ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Generator
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::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SummarizationEvaluationMetrics
Corresponds to the JSON property
summarizationMetrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluation
constructor
A new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluation
Returns a new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluation.
14020 14021 14022 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14020 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_time ⇒ String
Corresponds to the JSON property completeTime
13971 13972 13973 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13971 def complete_time @complete_time end |
#create_time ⇒ String
Corresponds to the JSON property createTime
13976 13977 13978 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13976 def create_time @create_time end |
#display_name ⇒ String
Corresponds to the JSON property displayName
13981 13982 13983 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13981 def display_name @display_name end |
#evaluation_status ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EvaluationStatus
Corresponds to the JSON property evaluationStatus
13986 13987 13988 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13986 def evaluation_status @evaluation_status end |
#generator_evaluation_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfig
Corresponds to the JSON property generatorEvaluationConfig
13991 13992 13993 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13991 def generator_evaluation_config @generator_evaluation_config end |
#initial_generator ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Generator
Corresponds to the JSON property initialGenerator
13996 13997 13998 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13996 def initial_generator @initial_generator end |
#name ⇒ String
Corresponds to the JSON property name
14001 14002 14003 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14001 def name @name end |
#satisfies_pzi ⇒ Boolean Also known as: satisfies_pzi?
Corresponds to the JSON property satisfiesPzi
14006 14007 14008 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14006 def satisfies_pzi @satisfies_pzi end |
#satisfies_pzs ⇒ Boolean Also known as: satisfies_pzs?
Corresponds to the JSON property satisfiesPzs
14012 14013 14014 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14012 def satisfies_pzs @satisfies_pzs end |
#summarization_metrics ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SummarizationEvaluationMetrics
Corresponds to the JSON property summarizationMetrics
14018 14019 14020 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14018 def summarization_metrics @summarization_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14025 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 |