Module Values.CreateCustomPluginRequestSource

Creates a custom plugin using the specified properties.

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

    The type of the plugin file.

    *)
  2. description : string option;
    (*

    A summary description of the custom plugin.

    *)
  3. location : CustomPluginLocation.t;
    (*

    Information about the location of a custom plugin.

    *)
  4. name : string;
    (*

    The name of the custom plugin.

    *)
  5. tags : Tags.t option;
    (*

    The tags you want to attach to the custom plugin.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> contentType:CustomPluginContentType.t -> location:CustomPluginLocation.t -> name:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of string | `Structure of (string * [> `Structure of (string * [> `String of string ]) list ]) list ]) 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