Module Values.SubmissionSource

A record created when a user submits a form card.

Sourcetype nonrec t = {
  1. value : Document.t option;
    (*

    The data submitted by the user.

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

    The unique identifier of the submission.

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

    The date and time when the card is submitted.

    *)
}
Sourceval make : ?value:??? -> ?submissionId:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Structure of 'a 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