Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigInputDataConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigInputDataConfig
- 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
-
#agent_assist_input_data_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigAgentAssistInputDataConfig
Corresponds to the JSON property
agentAssistInputDataConfig. -
#dataset_input_data_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig
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) ⇒ GoogleCloudDialogflowV2GeneratorEvaluationConfigInputDataConfig
constructor
A new instance of GoogleCloudDialogflowV2GeneratorEvaluationConfigInputDataConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorEvaluationConfigInputDataConfig
Returns a new instance of GoogleCloudDialogflowV2GeneratorEvaluationConfigInputDataConfig.
10647 10648 10649 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10647 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_assist_input_data_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigAgentAssistInputDataConfig
Corresponds to the JSON property agentAssistInputDataConfig
10609 10610 10611 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10609 def agent_assist_input_data_config @agent_assist_input_data_config end |
#dataset_input_data_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2GeneratorEvaluationConfigDatasetInputDataConfig
Corresponds to the JSON property datasetInputDataConfig
10614 10615 10616 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10614 def dataset_input_data_config @dataset_input_data_config end |
#end_time ⇒ String
Corresponds to the JSON property endTime
10619 10620 10621 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10619 def end_time @end_time end |
#input_data_source_type ⇒ String
Corresponds to the JSON property inputDataSourceType
10624 10625 10626 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10624 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
10629 10630 10631 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10629 def is_summary_generation_allowed @is_summary_generation_allowed end |
#sample_size ⇒ Fixnum
Corresponds to the JSON property sampleSize
10635 10636 10637 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10635 def sample_size @sample_size end |
#start_time ⇒ String
Corresponds to the JSON property startTime
10640 10641 10642 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10640 def start_time @start_time end |
#summary_generation_option ⇒ String
Corresponds to the JSON property summaryGenerationOption
10645 10646 10647 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10645 def summary_generation_option @summary_generation_option end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10652 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 |