Module Values_0.CommandParameterValueComparisonOperandSource

The comparison operand used to compare the defined value against the value supplied in request.

Sourcetype nonrec t = {
  1. number : StringParameterValue.t option;
    (*

    An operand of number value type, defined as a string.

    *)
  2. numbers : CommandParameterValueStringList.t option;
    (*

    A List of operands of numerical value type, defined as strings.

    *)
  3. string : StringParameterValue.t option;
    (*

    An operand of string value type.

    *)
  4. strings : CommandParameterValueStringList.t option;
    (*

    A List of operands of string value type.

    *)
  5. numberRange : CommandParameterValueNumberRange.t option;
    (*

    An operand of numerical range value type.

    *)
}
Sourceval make : ?number:??? -> ?numbers:??? -> ?string:??? -> ?strings:??? -> ?numberRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of StringParameterValue.t ] list | `String of StringParameterValue.t | `Structure of (string * [> `String of StringParameterValue.t ]) list ]) 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