Module Values.PackageVersionHistorySource

Details about a package version.

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

    The package version.

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

    A message associated with the package version when it was uploaded.

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

    The date and time when the package was created.

    *)
  4. pluginProperties : PluginProperties.t option;
    (*

    Additional information about plugin properties if the package is a ZIP-PLUGIN package.

    *)
  5. packageConfiguration : PackageConfiguration.t option;
    (*

    The configuration details for a specific version of a package.

    *)
}
Sourceval make : ?packageVersion:??? -> ?commitMessage:??? -> ?createdAt:??? -> ?pluginProperties:??? -> ?packageConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PackageVersion.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of UncompressedPluginSizeInBytes.t | `String of PluginName.t ]) list | `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