Module Values_0.PackageVersionSummarySource

A summary of information about a package version.

Sourcetype nonrec t = {
  1. packageName : PackageName.t option;
    (*

    The name of the associated software package.

    *)
  2. versionName : VersionName.t option;
    (*

    The name of the target package version.

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

    The status of the package version. For more information, see Package version lifecycle.

    *)
  4. creationDate : CreationDate.t option;
    (*

    The date that the package version was created.

    *)
  5. lastModifiedDate : LastModifiedDate.t option;
    (*

    The date that the package version was last updated.

    *)
}
Sourceval make : ?packageName:??? -> ?versionName:??? -> ?status:??? -> ?creationDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PackageName.t | `Timestamp of CreationDate.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