Module Values.PluginPropertiesSource

Basic information about the plugin.

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

    The name of the plugin.

    *)
  2. description : PluginDescription.t option;
    (*

    The description of the plugin.

    *)
  3. version : PluginVersion.t option;
    (*

    The version of the plugin.

    *)
  4. className : PluginClassName.t option;
    (*

    The name of the class to load.

    *)
  5. uncompressedSizeInBytes : UncompressedPluginSizeInBytes.t option;
    (*

    The uncompressed size of the plugin.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?version:??? -> ?className:??? -> ?uncompressedSizeInBytes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of UncompressedPluginSizeInBytes.t | `String of PluginName.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