class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentDefinition

Definition of the experiment.

Attributes

condition[RW]

The condition defines which subset of sessions are selected for this experiment. If not specified, all sessions are eligible. E.g. “query_input. language_code=en” See the [conditions reference](cloud.google.com/ dialogflow/cx/docs/reference/condition). Corresponds to the JSON property `condition` @return [String]

version_variants[RW]

A list of flow version variants. Corresponds to the JSON property `versionVariants` @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1VersionVariants]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 3688
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 3693
def update!(**args)
  @condition = args[:condition] if args.key?(:condition)
  @version_variants = args[:version_variants] if args.key?(:version_variants)
end