Module Values_1.ViewInputContentSource

View content containing all content necessary to render a view except for runtime input data and the runtime input schema, which is auto-generated by this operation.

Sourcetype nonrec t = {
  1. template : ViewTemplate.t option;
    (*

    The view template representing the structure of the view.

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

    A list of possible actions from the view.

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