Module Values.ParameterValueSource

An object that includes the data type of a security control parameter and its current value.

Sourcetype nonrec t = {
  1. int : Integer.t option;
    (*

    A control parameter that is an integer.

    *)
  2. integerList : IntegerList.t option;
    (*

    A control parameter that is a list of integers.

    *)
  3. double : Double.t option;
    (*

    A control parameter that is a double.

    *)
  4. string : NonEmptyString.t option;
    (*

    A control parameter that is a string.

    *)
  5. stringList : StringList.t option;
    (*

    A control parameter that is a list of strings.

    *)
  6. bool : Boolean.t option;
    (*

    A control parameter that is a boolean.

    *)
  7. enum : NonEmptyString.t option;
    (*

    A control parameter that is an enum.

    *)
  8. enumList : StringList.t option;
    (*

    A control parameter that is a list of enums.

    *)
}
Sourceval make : ?int:??? -> ?integerList:??? -> ?double:??? -> ?string:??? -> ?stringList:??? -> ?bool:??? -> ?enum:??? -> ?enumList:??? -> unit -> t
Sourceval 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 ]
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