Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig

Returns a new instance of GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigInputDataConfig.



14306
14307
14308
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14306

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_assist_input_data_configGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigAgentAssistInputDataConfig

Corresponds to the JSON property agentAssistInputDataConfig



14268
14269
14270
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14268

def agent_assist_input_data_config
  @agent_assist_input_data_config
end

#dataset_input_data_configGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GeneratorEvaluationConfigDatasetInputDataConfig

Corresponds to the JSON property datasetInputDataConfig



14273
14274
14275
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14273

def dataset_input_data_config
  @dataset_input_data_config
end

#end_timeString

Corresponds to the JSON property endTime

Returns:

  • (String)


14278
14279
14280
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14278

def end_time
  @end_time
end

#input_data_source_typeString

Corresponds to the JSON property inputDataSourceType

Returns:

  • (String)


14283
14284
14285
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14283

def input_data_source_type
  @input_data_source_type
end

#is_summary_generation_allowedBoolean Also known as: is_summary_generation_allowed?

Corresponds to the JSON property isSummaryGenerationAllowed

Returns:

  • (Boolean)


14288
14289
14290
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14288

def is_summary_generation_allowed
  @is_summary_generation_allowed
end

#sample_sizeFixnum

Corresponds to the JSON property sampleSize

Returns:

  • (Fixnum)


14294
14295
14296
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14294

def sample_size
  @sample_size
end

#start_timeString

Corresponds to the JSON property startTime

Returns:

  • (String)


14299
14300
14301
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14299

def start_time
  @start_time
end

#summary_generation_optionString

Corresponds to the JSON property summaryGenerationOption

Returns:

  • (String)


14304
14305
14306
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14304

def summary_generation_option
  @summary_generation_option
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14311
14312
14313
14314
14315
14316
14317
14318
14319
14320
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14311

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