Module Values.SettingSource

Represents a single network-level configuration setting with its name, value, and data type. Settings control network-wide behaviors and features.

Sourcetype nonrec t = {
  1. optionName : GenericString.t option;
    (*

    The name of the network setting (e.g., 'enableClientMetrics', 'dataRetention').

    *)
  2. value : GenericString.t option;
    (*

    The current value of the setting as a string. Boolean values are represented as 'true' or 'false'.

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

    The data type of the setting value (e.g., 'boolean', 'string', 'number').

    *)
}
Sourceval make : ?optionName:??? -> ?value:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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