Values.ExperimentActionSourceDescribes the action for an experiment.
type nonrec t = {actionId : ActionId.t option;The ID of the action.
*)description : ExperimentActionDescription.t option;The description for the action.
*)parameters : ExperimentActionParameterMap.t option;The parameters for the action.
*)targets : ExperimentActionTargetMap.t option;The targets for the action.
*)startAfter : ExperimentActionStartAfterList.t option;The name of the action that must be completed before this action starts.
*)state : ExperimentActionState.t option;The state of the action.
*)startTime : ExperimentActionStartTime.t option;The time that the action started.
*)endTime : ExperimentActionEndTime.t option;The time that the action ended.
*)}val 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 ]