Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval

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) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval.



6522
6523
6524
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6522

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

Instance Attribute Details

#confidence_levelFloat

Corresponds to the JSON property confidenceLevel

Returns:

  • (Float)


6505
6506
6507
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6505

def confidence_level
  @confidence_level
end

#lower_boundFloat

Corresponds to the JSON property lowerBound

Returns:

  • (Float)


6510
6511
6512
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6510

def lower_bound
  @lower_bound
end

#ratioFloat

Corresponds to the JSON property ratio

Returns:

  • (Float)


6515
6516
6517
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6515

def ratio
  @ratio
end

#upper_boundFloat

Corresponds to the JSON property upperBound

Returns:

  • (Float)


6520
6521
6522
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6520

def upper_bound
  @upper_bound
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6527
6528
6529
6530
6531
6532
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6527

def update!(**args)
  @confidence_level = args[:confidence_level] if args.key?(:confidence_level)
  @lower_bound = args[:lower_bound] if args.key?(:lower_bound)
  @ratio = args[:ratio] if args.key?(:ratio)
  @upper_bound = args[:upper_bound] if args.key?(:upper_bound)
end