Values_0.CommandParameterValueSourceThe value of a command parameter used to create a command execution. The commandParameterValue can only have one of the below fields listed.
type nonrec t = {s : StringParameterValue.t option;An attribute of type String. For example: "S": "Hello"
*)b : BooleanParameterValue.t option;An attribute of type Boolean. For example: "BOOL": true
*)i : IntegerParameterValue.t option;An attribute of type Integer (Thirty-Two Bits).
*)l : LongParameterValue.t option;An attribute of type Long.
*)d : DoubleParameterValue.t option;An attribute of type Double (Sixty-Four Bits).
*)bIN : BinaryParameterValue.t option;An attribute of type Binary. For example: "B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"
*)uL : UnsignedLongParameterValue.t option;An attribute of type unsigned long.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Blob of BinaryParameterValue.t
| `Boolean of BooleanParameterValue.t
| `Double of DoubleParameterValue.t
| `Integer of IntegerParameterValue.t
| `Long of LongParameterValue.t
| `String of StringParameterValue.t ])
list ]