Module Values.TextInputCardSource

A card in an Amazon Q App that allows the user to input text.

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

    The unique identifier of the text input card.

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

    The title or label of the text input card.

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

    Any dependencies or requirements for the text input card.

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

    The type of the card.

    *)
  5. placeholder : Placeholder.t option;
    (*

    The placeholder text to display in the text input field.

    *)
  6. defaultValue : Default.t option;
    (*

    The default value to pre-populate in the text input field.

    *)
}
Sourceval make : ?id:??? -> ?title:??? -> ?dependencies:??? -> ?type_:??? -> ?placeholder:??? -> ?defaultValue:??? -> 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