Module Values.DependencyRevisionSource

An object that contains the ID and revision number of a workflow or system that is part of a deployment.

Sourcetype nonrec t = {
  1. id : Urn.t option;
    (*

    The ID of the workflow or system.

    *)
  2. revisionNumber : Version.t option;
    (*

    The revision number of the workflow or system.

    *)
}
Sourceval make : ?id:??? -> ?revisionNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Version.t | `String of Urn.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