Module Values_0.ParameterControlSource

The control of a parameter that users can interact with in a dashboard or an analysis. This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Sourcetype nonrec t = {
  1. dateTimePicker : ParameterDateTimePickerControl.t option;
    (*

    A control from a date parameter that specifies date and time.

    *)
  2. list : ParameterListControl.t option;
    (*

    A control to display a list with buttons or boxes that are used to select either a single value or multiple values.

    *)
  3. dropdown : ParameterDropDownControl.t option;
    (*

    A control to display a dropdown list with buttons that are used to select a single value.

    *)
  4. textField : ParameterTextFieldControl.t option;
    (*

    A control to display a text box that is used to enter a single entry.

    *)
  5. textArea : ParameterTextAreaControl.t option;
    (*

    A control to display a text box that is used to enter multiple entries.

    *)
  6. slider : ParameterSliderControl.t option;
    (*

    A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.

    *)
}
Sourceval make : ?dateTimePicker:??? -> ?list:??? -> ?dropdown:??? -> ?textField:??? -> ?textArea:??? -> ?slider:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of DataSetIdentifier.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Double of PercentileValue.t ]) list ]) list ]) list ]) list ]) list ] list | `String of ShortRestrictiveResourceId.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of DataSetIdentifier.t ]) list ]) list ] list | `String of DateTimeFormat.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum of string | `String of HexColor.t | `Structure of (string * [> `Enum of string | `String of PixelLength.t ]) list ]) list ]) list ]) 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