Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultMetric

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultMetric.



6564
6565
6566
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6564

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

Instance Attribute Details

#confidence_intervalGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval

Corresponds to the JSON property confidenceInterval



6542
6543
6544
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6542

def confidence_interval
  @confidence_interval
end

#countFloat

Corresponds to the JSON property count

Returns:

  • (Float)


6547
6548
6549
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6547

def count
  @count
end

#count_typeString

Corresponds to the JSON property countType

Returns:

  • (String)


6552
6553
6554
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6552

def count_type
  @count_type
end

#ratioFloat

Corresponds to the JSON property ratio

Returns:

  • (Float)


6557
6558
6559
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6557

def ratio
  @ratio
end

#typeString

Corresponds to the JSON property type

Returns:

  • (String)


6562
6563
6564
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6562

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6569
6570
6571
6572
6573
6574
6575
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6569

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