Module Values_0.VisualCustomizationFieldsConfigurationSource

The configuration that controls field customization options available to dashboard readers for a visual.

Sourcetype nonrec t = {
  1. status : DashboardCustomizationStatus.t option;
    (*

    Specifies whether dashboard readers can customize fields for this visual. This option is ENABLED by default.

    *)
  2. additionalFields : VisualCustomizationAdditionalFieldsList.t option;
    (*

    The additional dataset fields available for dashboard readers to customize the visual with, beyond the fields already configured on the visual.

    *)
}
Sourceval make : ?status:??? -> ?additionalFields:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of DataSetIdentifier.t ]) 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