Module Values.CustomPluginRevisionSummarySource

Details about the revision of a custom plugin.

Sourcetype nonrec t = {
  1. contentType : CustomPluginContentType.t option;
    (*

    The format of the plugin file.

    *)
  2. creationTime : string option;
    (*

    The time that the custom plugin was created.

    *)
  3. description : string option;
    (*

    The description of the custom plugin.

    *)
  4. fileDescription : CustomPluginFileDescription.t option;
    (*

    Details about the custom plugin file.

    *)
  5. location : CustomPluginLocationDescription.t option;
    (*

    Information about the location of the custom plugin.

    *)
  6. revision : Awso.Import.Int64.t option;
    (*

    The revision of the custom plugin.

    *)
}
Sourceval make : ?contentType:??? -> ?creationTime:??? -> ?description:??? -> ?fileDescription:??? -> ?location:??? -> ?revision:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `String of string ]) list ]) list | `Timestamp 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