Module Values_0.PackageSummarySource

A summary of information about a software package.

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

    The name for the target software package.

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

    The name of the default package version.

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

    The date that the package was created.

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

    The date that the package was last updated.

    *)
}
Sourceval make : ?packageName:??? -> ?defaultVersionName:??? -> ?creationDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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