Values.ActionRevisionSourceRepresents information about the version (or revision) of an action.
type nonrec t = {revisionId : Revision.t;The system-generated unique ID that identifies the revision number of the action.
*)revisionChangeId : RevisionChangeIdentifier.t;The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
*)created : Timestamp.t;The date and time when the most recent version of the action was created, in timestamp format.
*)}val make :
revisionId:Revision.t ->
revisionChangeId:RevisionChangeIdentifier.t ->
created:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of Revision.t | `Timestamp of Timestamp.t ]) list ]