Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig
- 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
-
#agent_assist_input_data_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigAgentAssistInputDataConfig
Corresponds to the JSON property
agentAssistInputDataConfig. -
#dataset_input_data_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigDatasetInputDataConfig
Corresponds to the JSON property
datasetInputDataConfig. -
#end_time ⇒ String
Corresponds to the JSON property
endTime. -
#input_data_source_type ⇒ String
Corresponds to the JSON property
inputDataSourceType. -
#is_summary_generation_allowed ⇒ Boolean
(also: #is_summary_generation_allowed?)
Corresponds to the JSON property
isSummaryGenerationAllowed. -
#sample_size ⇒ Fixnum
Corresponds to the JSON property
sampleSize. -
#start_time ⇒ String
Corresponds to the JSON property
startTime. -
#summary_generation_option ⇒ String
Corresponds to the JSON property
summaryGenerationOption.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig
Returns a new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig.
14159 14160 14161 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14159 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_assist_input_data_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigAgentAssistInputDataConfig
Corresponds to the JSON property agentAssistInputDataConfig
14121 14122 14123 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14121 def agent_assist_input_data_config @agent_assist_input_data_config end |
#dataset_input_data_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigDatasetInputDataConfig
Corresponds to the JSON property datasetInputDataConfig
14126 14127 14128 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14126 def dataset_input_data_config @dataset_input_data_config end |
#end_time ⇒ String
Corresponds to the JSON property endTime
14131 14132 14133 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14131 def end_time @end_time end |
#input_data_source_type ⇒ String
Corresponds to the JSON property inputDataSourceType
14136 14137 14138 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14136 def input_data_source_type @input_data_source_type end |
#is_summary_generation_allowed ⇒ Boolean Also known as: is_summary_generation_allowed?
Corresponds to the JSON property isSummaryGenerationAllowed
14141 14142 14143 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14141 def is_summary_generation_allowed @is_summary_generation_allowed end |
#sample_size ⇒ Fixnum
Corresponds to the JSON property sampleSize
14147 14148 14149 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14147 def sample_size @sample_size end |
#start_time ⇒ String
Corresponds to the JSON property startTime
14152 14153 14154 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14152 def start_time @start_time end |
#summary_generation_option ⇒ String
Corresponds to the JSON property summaryGenerationOption
14157 14158 14159 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14157 def summary_generation_option @summary_generation_option end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14164 def update!(**args) @agent_assist_input_data_config = args[:agent_assist_input_data_config] if args.key?(:agent_assist_input_data_config) @dataset_input_data_config = args[:dataset_input_data_config] if args.key?(:dataset_input_data_config) @end_time = args[:end_time] if args.key?(:end_time) @input_data_source_type = args[:input_data_source_type] if args.key?(:input_data_source_type) @is_summary_generation_allowed = args[:is_summary_generation_allowed] if args.key?(:is_summary_generation_allowed) @sample_size = args[:sample_size] if args.key?(:sample_size) @start_time = args[:start_time] if args.key?(:start_time) @summary_generation_option = args[:summary_generation_option] if args.key?(:summary_generation_option) end |