Module Values.ExperimentTemplateActionSource

Describes an action for an experiment template.

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

    The ID of the action.

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

    A description for the action.

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

    The parameters for the action.

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

    The targets for the action.

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

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

    *)
}
Sourceval make : ?actionId:??? -> ?description:??? -> ?parameters:??? -> ?targets:??? -> ?startAfter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ExperimentTemplateActionStartAfter.t ] list | `Map of ([> `String of ExperimentTemplateActionParameterName.t ] * [> `String of ExperimentTemplateActionParameter.t ]) list | `String of ActionId.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