Module Values.CurrentRevisionSource

Represents information about a current revision.

Sourcetype nonrec t = {
  1. revision : Revision.t;
    (*

    The revision ID of the current version of an artifact.

    *)
  2. changeIdentifier : RevisionChangeIdentifier.t;
    (*

    The change identifier for the current revision.

    *)
  3. created : Time.t option;
    (*

    The date and time when the most recent revision of the artifact was created, in timestamp format.

    *)
  4. revisionSummary : RevisionSummary.t option;
    (*

    The summary of the most recent revision of the artifact.

    *)
}
Sourceval context_ : string
Sourceval make : ?created:??? -> ?revisionSummary:??? -> revision:Revision.t -> changeIdentifier:RevisionChangeIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Revision.t | `Timestamp of Time.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