Module Values.CardValueSource

The value or result associated with a card in a Amazon Q App session.

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

    The unique identifier of the card.

    *)
  2. value : CardValueValueString.t;
    (*

    The value or result associated with the card.

    *)
  3. submissionMutation : SubmissionMutation.t option;
    (*

    The structure that describes how the current form card value is mutated. Only applies for form cards when multiple responses are allowed.

    *)
}
Sourceval context_ : string
Sourceval make : ?submissionMutation:??? -> cardId:UUID.t -> value:CardValueValueString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Structure of (string * [> `Enum of string | `String of UUID.t ]) 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