Module Values.DimensionGroupDetailSource

Information about dimensions within a dimension group.

Sourcetype nonrec t = {
  1. group : String_.t option;
    (*

    The name of the dimension group.

    *)
  2. dimensions : DimensionDetailList.t option;
    (*

    The dimensions within a dimension group.

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