Module Values.PackageVersionHistorySource

Details of a package version.

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

    Version of the package.

    *)
  2. commitMessage : CommitMessage.t option;
    (*

    A message associated with the version.

    *)
  3. createdAt : CreatedAt.t option;
    (*

    Timestamp which tells creation time of the package version.

    *)
}
Sourceval make : ?packageVersion:??? -> ?commitMessage:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PackageVersion.t | `Timestamp of CreatedAt.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