Module Values.CustomPluginFileDescriptionSource

Details about a custom plugin file.

Sourcetype nonrec t = {
  1. fileMd5 : string option;
    (*

    The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the file.

    *)
  2. fileSize : Awso.Import.Int64.t option;
    (*

    The size in bytes of the custom plugin file. You can use it to validate the file.

    *)
}
Sourceval make : ?fileMd5:??? -> ?fileSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string ]) 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