Values.SettingSourceRepresents a single network-level configuration setting with its name, value, and data type. Settings control network-wide behaviors and features.
type nonrec t = {optionName : GenericString.t option;The name of the network setting (e.g., 'enableClientMetrics', 'dataRetention').
*)value : GenericString.t option;The current value of the setting as a string. Boolean values are represented as 'true' or 'false'.
*)type_ : GenericString.t option;The data type of the setting value (e.g., 'boolean', 'string', 'number').
*)}