Module Values.TransitionStateSource

Represents information about the state of transitions between one stage and another stage.

Sourcetype nonrec t = {
  1. enabled : Enabled.t option;
    (*

    Whether the transition between stages is enabled (true) or disabled (false).

    *)
  2. lastChangedBy : LastChangedBy.t option;
    (*

    The ID of the user who last changed the transition state.

    *)
  3. lastChangedAt : LastChangedAt.t option;
    (*

    The timestamp when the transition state was last changed.

    *)
  4. disabledReason : DisabledReason.t option;
    (*

    The user-specified reason why the transition between two stages of a pipeline was disabled.

    *)
}
Sourceval make : ?enabled:??? -> ?lastChangedBy:??? -> ?lastChangedAt:??? -> ?disabledReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `String of LastChangedBy.t | `Timestamp of LastChangedAt.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