Values.CurrentRevisionSourceRepresents information about a current revision.
type nonrec t = {revision : Revision.t;The revision ID of the current version of an artifact.
*)changeIdentifier : RevisionChangeIdentifier.t;The change identifier for the current revision.
*)created : Time.t option;The date and time when the most recent revision of the artifact was created, in timestamp format.
*)revisionSummary : RevisionSummary.t option;The summary of the most recent revision of the artifact.
*)}val make :
?created:??? ->
?revisionSummary:??? ->
revision:Revision.t ->
changeIdentifier:RevisionChangeIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of Revision.t | `Timestamp of Time.t ]) list ]