Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric
- 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
-
#confidence_interval ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval
Corresponds to the JSON property
confidenceInterval. -
#count ⇒ Float
Corresponds to the JSON property
count. -
#count_type ⇒ String
Corresponds to the JSON property
countType. -
#ratio ⇒ Float
Corresponds to the JSON property
ratio. -
#type ⇒ String
Corresponds to the JSON property
type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultMetric
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultMetric.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultMetric
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultMetric.
6558 6559 6560 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6558 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence_interval ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval
Corresponds to the JSON property confidenceInterval
6536 6537 6538 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6536 def confidence_interval @confidence_interval end |
#count ⇒ Float
Corresponds to the JSON property count
6541 6542 6543 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6541 def count @count end |
#count_type ⇒ String
Corresponds to the JSON property countType
6546 6547 6548 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6546 def count_type @count_type end |
#ratio ⇒ Float
Corresponds to the JSON property ratio
6551 6552 6553 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6551 def ratio @ratio end |
#type ⇒ String
Corresponds to the JSON property type
6556 6557 6558 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6556 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6563 6564 6565 6566 6567 6568 6569 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6563 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 |