class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResultVersionMetrics

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::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResultMetric>]

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_v3/classes.rb, line 1291
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_v3/classes.rb, line 1296
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