Values.TextInputCardInputSourceThe input shape for defining a text input card in an Amazon Q App.
type nonrec t = {title : Title.t;The title or label of the text input card.
*)id : UUID.t;The unique identifier of the text input card.
*)type_ : CardType.t;The type of the card.
*)placeholder : Placeholder.t option;The placeholder text to display in the text input field.
*)defaultValue : Default.t option;The default value to pre-populate in the text input field.
*)}val make :
?placeholder:??? ->
?defaultValue:??? ->
title:Title.t ->
id:UUID.t ->
type_:CardType.t ->
unit ->
t