Module Values.FormInputCardInputSource

Represents a form input card for an Amazon Q App.

Sourcetype nonrec t = {
  1. title : Title.t;
    (*

    The title or label of the form input card.

    *)
  2. id : UUID.t;
    (*

    The unique identifier of the form input card.

    *)
  3. type_ : CardType.t;
    (*

    The type of the card.

    *)
  4. metadata : FormInputCardMetadata.t;
    (*

    The metadata that defines the form input card data.

    *)
  5. computeMode : InputCardComputeMode.t option;
    (*

    The compute mode of the form input card. This property determines whether individual participants of a data collection session can submit multiple response or one response. A compute mode of append shall allow participants to submit the same form multiple times with different values. A compute mode of replacecode> shall overwrite the current value for each participant.

    *)
}
Sourceval context_ : string
Sourceval make : ?computeMode:??? -> title:Title.t -> id:UUID.t -> type_:CardType.t -> metadata:FormInputCardMetadata.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Title.t | `Structure of (string * [> `Structure of 'a 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