class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
Version variant and associated metrics.
Attributes
metrics[RW]
The metrics and corresponding confidence intervals in the inference result. Corresponds to the JSON property `metrics` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric>]
session_count[RW]
Number of sessions that were allocated to this version. Corresponds to the JSON property `sessionCount` @return [Fixnum]
version[RW]
The name of the flow Version. Format: `projects//locations//agents//flows// versions/`. Corresponds to the JSON property `version` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 3832 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 3837 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