Module Values.FormInputCardSource

A card in an Amazon Q App that allows the user to submit a response.

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

    The unique identifier of the form input card.

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

    The title of the form input card.

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

    Any dependencies or requirements for the form input card.

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

    The type of the card.

    *)
  5. metadata : FormInputCardMetadata.t option;
    (*

    The metadata that defines the form input card data.

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