Module Values.WidgetConfigSource

Defines the complete configuration for a widget, including data retrieval settings and visualization preferences.

Sourcetype nonrec t = {
  1. queryParameters : QueryParameters.t;
    (*

    The parameters that define what data the widget should retrieve and how it should be filtered or grouped.

    *)
  2. displayConfig : DisplayConfig.t;
    (*

    The configuration that determines how the retrieved data should be visualized in the widget.

    *)
}
Sourceval context_ : string
Sourceval make : queryParameters:QueryParameters.t -> displayConfig:DisplayConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of GenericString.t ] * [> `Structure of (string * [> `Enum of string ]) list ]) list | `Structure of (string * Awso.Botodata.value) list ]) list ]) 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