Values.StringSearchSourceA structure that defines how to search for string values. You can specify a search option and the value to search for.
type nonrec t = {searchOption : SearchOption.t;The type of search operation to perform on the string value. Determines how the search value is matched against the target field.
*)searchValue : SearchValue.t;The string value to use in the search operation. This value is compared against the target field using the specified search option.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of SearchValue.t ]) list ]