Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
- 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
Overview
Version variant and associated metrics.
Instance Attribute Summary collapse
-
#metrics ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric>
The metrics and corresponding confidence intervals in the inference result.
-
#session_count ⇒ Fixnum
Number of sessions that were allocated to this version.
-
#version ⇒ String
The name of the flow Version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics.
6651 6652 6653 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6651 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metrics ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric>
The metrics and corresponding confidence intervals in the inference result.
Corresponds to the JSON property metrics
6638 6639 6640 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6638 def metrics @metrics end |
#session_count ⇒ Fixnum
Number of sessions that were allocated to this version.
Corresponds to the JSON property sessionCount
6643 6644 6645 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6643 def session_count @session_count end |
#version ⇒ String
The name of the flow Version. Format: projects//locations//agents//flows//
versions/.
Corresponds to the JSON property version
6649 6650 6651 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6649 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6656 6657 6658 6659 6660 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6656 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @session_count = args[:session_count] if args.key?(:session_count) @version = args[:version] if args.key?(:version) end |