Module Values.QAppSessionDataSource

The response collected for a Amazon Q App session. This container represents a single response to a Q App session.

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

    The card Id associated with the response submitted for a Q App session.

    *)
  2. value : Document.t option;
    (*

    The response submitted for a Q App session.

    *)
  3. user : User.t option;
    (*

    The user who submitted the response for a Q App session.

    *)
  4. submissionId : UUID.t option;
    (*

    The unique identifier of the submission.

    *)
  5. timestamp : QAppsTimestamp.t option;
    (*

    The date and time when the session data is submitted.

    *)
}
Sourceval make : ?cardId:??? -> ?value:??? -> ?user:??? -> ?submissionId:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Structure of (string * [> `String of UserId.t ]) list | `Timestamp of QAppsTimestamp.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