Struct google_analytics3::ExperimentVariations [] [src]

pub struct ExperimentVariations {
    pub status: Option<String>,
    pub url: Option<String>,
    pub won: Option<bool>,
    pub name: Option<String>,
    pub weight: Option<f64>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

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.

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

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

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.

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

Trait Implementations

impl Debug for ExperimentVariations
[src]

Formats the value using the given formatter.

impl Clone for ExperimentVariations
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ExperimentVariations
[src]

Returns the "default value" for a type. Read more

impl NestedType for ExperimentVariations
[src]

impl Part for ExperimentVariations
[src]