class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentDefinition
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::DialogflowV3::GoogleCloudDialogflowCxV3VersionVariants]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1147 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 1152 def update!(**args) @condition = args[:condition] if args.key?(:condition) @version_variants = args[:version_variants] if args.key?(:version_variants) end