Show / Hide Table of Contents

Class Experiment.VariationsData

Array of variations. The first variation in the array is the original. The number of variations may not change once an experiment is in the RUNNING state. At least two variations are required before status can be set to RUNNING.

Inheritance
object
Experiment.VariationsData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class Experiment.VariationsData

Properties

Name

The name of the variation. This field is required when creating an experiment. This field may not be changed for an experiment whose status is ENDED.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Status

Status of the variation. Possible values: "ACTIVE", "INACTIVE". INACTIVE variations are not served. This field may not be changed for an experiment whose status is ENDED.

Declaration
[JsonProperty("status")]
public virtual string Status { get; set; }
Property Value
Type Description
string

Url

The URL of the variation. This field may not be changed for an experiment whose status is RUNNING or ENDED.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
string

Weight

Weight that this variation should receive. Only present if the experiment is running. This field is read-only.

Declaration
[JsonProperty("weight")]
public virtual double? Weight { get; set; }
Property Value
Type Description
double?

Won

True if the experiment has ended and this variation performed (statistically) significantly better than the original. This field is read-only.

Declaration
[JsonProperty("won")]
public virtual bool? Won { get; set; }
Property Value
Type Description
bool?
In this article
Back to top Generated by DocFX