Module Values.PackageVersionSummarySource

Details about a package version, including its status, version, and revision. The ListPackageVersions operation returns a list of PackageVersionSummary objects.

Sourcetype nonrec t = {
  1. version : PackageVersion.t option;
    (*

    Information about a package version.

    *)
  2. revision : PackageVersionRevision.t option;
    (*

    The revision associated with a package version.

    *)
  3. status : PackageVersionStatus.t option;
    (*

    A string that contains the status of the package version. It can be one of the following:

    *)
  4. origin : PackageVersionOrigin.t option;
    (*

    A PackageVersionOrigin object that contains information about how the package version was added to the repository.

    *)
}
Sourceval make : ?version:??? -> ?revision:??? -> ?status:??? -> ?origin:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PackageVersion.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of RepositoryName.t ]) list ]) list ]) 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