Module Values.CardSource

A card representing a component or step in an Amazon Q App's flow.

Sourcetype nonrec t = {
  1. textInput : TextInputCard.t option;
    (*

    A container for the properties of the text input card.

    *)
  2. qQuery : QQueryCard.t option;
    (*

    A container for the properties of the query card.

    *)
  3. qPlugin : QPluginCard.t option;
    (*

    A container for the properties of the plugin card.

    *)
  4. fileUpload : FileUploadCard.t option;
    (*

    A container for the properties of the file upload card.

    *)
  5. formInput : FormInputCard.t option;
    (*

    A container for the properties of the form input card.

    *)
}
Sourceval make : ?textInput:??? -> ?qQuery:??? -> ?qPlugin:??? -> ?fileUpload:??? -> ?formInput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) 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