Module Values.QPluginCardSource

A card in an Q App that integrates with a third-party plugin or service.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique identifier of the plugin card.

    *)
  2. title : Title.t option;
    (*

    The title or label of the plugin card.

    *)
  3. dependencies : DependencyList.t option;
    (*

    Any dependencies or requirements for the plugin card.

    *)
  4. type_ : CardType.t option;
    (*

    The type of the card.

    *)
  5. prompt : Prompt.t option;
    (*

    The prompt or instructions displayed for the plugin card.

    *)
  6. pluginType : PluginType.t option;
    (*

    The type or category of the plugin used by the card.

    *)
  7. pluginId : String_.t option;
    (*

    The unique identifier of the plugin used by the card.

    *)
  8. actionIdentifier : ActionIdentifier.t option;
    (*

    The action identifier of the action to be performed by the plugin card.

    *)
}
Sourceval make : ?id:??? -> ?title:??? -> ?dependencies:??? -> ?type_:??? -> ?prompt:??? -> ?pluginType:??? -> ?pluginId:??? -> ?actionIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of UUID.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