Module Values.AppDefinitionSource

The definition of the Q App, specifying the cards and flow.

Sourcetype nonrec t = {
  1. appDefinitionVersion : String_.t option;
    (*

    The version of the app definition schema or specification.

    *)
  2. cards : CardModelList.t option;
    (*

    The cards that make up the Q App, such as text input, file upload, or query cards.

    *)
  3. canEdit : Boolean.t option;
    (*

    A flag indicating whether the Q App's definition can be edited by the user.

    *)
}
Sourceval make : ?appDefinitionVersion:??? -> ?cards:??? -> ?canEdit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ] list | `String of String_.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