Module Values.ExperimentActionSource

Describes the action for an experiment.

Sourcetype nonrec t = {
  1. actionId : ActionId.t option;
    (*

    The ID of the action.

    *)
  2. description : ExperimentActionDescription.t option;
    (*

    The description for the action.

    *)
  3. parameters : ExperimentActionParameterMap.t option;
    (*

    The parameters for the action.

    *)
  4. targets : ExperimentActionTargetMap.t option;
    (*

    The targets for the action.

    *)
  5. startAfter : ExperimentActionStartAfterList.t option;
    (*

    The name of the action that must be completed before this action starts.

    *)
  6. state : ExperimentActionState.t option;
    (*

    The state of the action.

    *)
  7. startTime : ExperimentActionStartTime.t option;
    (*

    The time that the action started.

    *)
  8. endTime : ExperimentActionEndTime.t option;
    (*

    The time that the action ended.

    *)
}
Sourceval make : ?actionId:??? -> ?description:??? -> ?parameters:??? -> ?targets:??? -> ?startAfter:??? -> ?state:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ExperimentActionStartAfter.t ] list | `Map of ([> `String of ExperimentActionParameterName.t ] * [> `String of ExperimentActionParameter.t ]) list | `String of ActionId.t | `Structure of (string * [> `Enum of string | `String of ExperimentActionStatusReason.t ]) list | `Timestamp of ExperimentActionStartTime.t ]) 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