Module Values.ConfigurationDefinitionSummarySource

A summarized definition of a Quick Setup configuration definition.

Sourcetype nonrec t = {
  1. firstClassParameters : ConfigurationParametersMap.t option;
    (*

    The common parameters and values for the configuration definition.

    *)
  2. id : String_.t option;
    (*

    The ID of the configuration definition.

    *)
  3. type_ : String_.t option;
    (*

    The type of the Quick Setup configuration used by the configuration definition.

    *)
  4. typeVersion : String_.t option;
    (*

    The version of the Quick Setup type used by the configuration definition.

    *)
}
Sourceval make : ?firstClassParameters:??? -> ?id:??? -> ?type_:??? -> ?typeVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ConfigurationParametersMapKeyString.t ] * [> `String of ConfigurationParametersMapValueString.t ]) 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