Module Values.ExperimentOptionsSource

Describes the options for an experiment.

Sourcetype nonrec t = {
  1. accountTargeting : AccountTargeting.t option;
    (*

    The account targeting setting for an experiment.

    *)
  2. emptyTargetResolutionMode : EmptyTargetResolutionMode.t option;
    (*

    The empty target resolution mode for an experiment.

    *)
  3. actionsMode : ActionsMode.t option;
    (*

    The actions mode of the experiment that is set from the StartExperiment API command.

    *)
}
Sourceval make : ?accountTargeting:??? -> ?emptyTargetResolutionMode:??? -> ?actionsMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t