Values.TransitionStateSourceRepresents information about the state of transitions between one stage and another stage.
type nonrec t = {enabled : Enabled.t option;Whether the transition between stages is enabled (true) or disabled (false).
*)lastChangedBy : LastChangedBy.t option;The ID of the user who last changed the transition state.
*)lastChangedAt : LastChangedAt.t option;The timestamp when the transition state was last changed.
*)disabledReason : DisabledReason.t option;The user-specified reason why the transition between two stages of a pipeline was disabled.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Enabled.t
| `String of LastChangedBy.t
| `Timestamp of LastChangedAt.t ])
list ]