Module Values.AssetSummarySource

Contains details about a package version asset.

Sourcetype nonrec t = {
  1. name : AssetName.t option;
    (*

    The name of the asset.

    *)
  2. size : LongOptional.t option;
    (*

    The size of the asset.

    *)
  3. hashes : AssetHashes.t option;
    (*

    The hashes of the asset.

    *)
}
Sourceval make : ?name:??? -> ?size:??? -> ?hashes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of LongOptional.t | `Map of ([> `Enum of string ] * [> `String of HashValue.t ]) list | `String of AssetName.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