Module Values_1.ViewContentSource

View content containing all content necessary to render a view except for runtime input data.

Sourcetype nonrec t = {
  1. inputSchema : ViewInputSchema.t option;
    (*

    The data schema matching data that the view template must be provided to render.

    *)
  2. template : ViewTemplate.t option;
    (*

    The view template representing the structure of the view.

    *)
  3. actions : ViewActions.t option;
    (*

    A list of possible actions from the view.

    *)
}
Sourceval make : ?inputSchema:??? -> ?template:??? -> ?actions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ViewAction.t ] list | `String of ViewInputSchema.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