Values.ParameterValueSourceAn object that includes the data type of a security control parameter and its current value.
type nonrec t = {int : Integer.t option;A control parameter that is an integer.
*)integerList : IntegerList.t option;A control parameter that is a list of integers.
*)double : Double.t option;A control parameter that is a double.
*)string : NonEmptyString.t option;A control parameter that is a string.
*)stringList : StringList.t option;A control parameter that is a list of strings.
*)bool : Boolean.t option;A control parameter that is a boolean.
*)enum : NonEmptyString.t option;A control parameter that is an enum.
*)enumList : StringList.t option;A control parameter that is a list of enums.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Double of Double.t
| `Integer of Integer.t
| `List of
[> `Integer of Integer.t | `String of NonEmptyString.t ] list
| `String of NonEmptyString.t ])
list ]