Module Values_0.StateTransitionSource

Information about the state transition of a supervisor.

Sourcetype nonrec t = {
  1. state : ParticipantState.t option;
    (*

    The state of the transition.

    *)
  2. stateStartTimestamp : string option;
    (*

    The date and time when the state started in UTC time.

    *)
  3. stateEndTimestamp : string option;
    (*

    The date and time when the state ended in UTC time.

    *)
}
Sourceval make : ?state:??? -> ?stateStartTimestamp:??? -> ?stateEndTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp 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