Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResultMetric

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ExperimentResultMetric

Returns a new instance of GoogleCloudDialogflowCxV3ExperimentResultMetric.



2436
2437
2438
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2436

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

Instance Attribute Details

#confidence_intervalGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResultConfidenceInterval

Corresponds to the JSON property confidenceInterval



2414
2415
2416
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2414

def confidence_interval
  @confidence_interval
end

#countFloat

Corresponds to the JSON property count

Returns:

  • (Float)


2419
2420
2421
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2419

def count
  @count
end

#count_typeString

Corresponds to the JSON property countType

Returns:

  • (String)


2424
2425
2426
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2424

def count_type
  @count_type
end

#ratioFloat

Corresponds to the JSON property ratio

Returns:

  • (Float)


2429
2430
2431
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2429

def ratio
  @ratio
end

#typeString

Corresponds to the JSON property type

Returns:

  • (String)


2434
2435
2436
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2434

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2441
2442
2443
2444
2445
2446
2447
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2441

def update!(**args)
  @confidence_interval = args[:confidence_interval] if args.key?(:confidence_interval)
  @count = args[:count] if args.key?(:count)
  @count_type = args[:count_type] if args.key?(:count_type)
  @ratio = args[:ratio] if args.key?(:ratio)
  @type = args[:type] if args.key?(:type)
end