ExperimentValue interface

Represents an Experiment value.

Signature:

export interface ExperimentValue 

Properties

Property Type Description
experimentId string ID of the Experiment to which the value is linked.
exposurePercent number The percentage of users included in the Experiment, represented as a number between 0 and 100.
variantValue ExperimentVariantValue[] Collection of ExperimentVariantValues that represents the variants served by the Experiment.

ExperimentValue.experimentId

ID of the Experiment to which the value is linked.

Signature:

experimentId: string;

ExperimentValue.exposurePercent

The percentage of users included in the Experiment, represented as a number between 0 and 100.

Signature:

exposurePercent?: number;

ExperimentValue.variantValue

Collection of ExperimentVariantValues that represents the variants served by the Experiment.

Signature:

variantValue: ExperimentVariantValue[];