module FilterExpression:sig..end
type t = {
|
caseSensitive : |
(* |
Determines if the filter is case sensitive.
| *) |
|
expressionValue : |
(* |
Filter expression value
| *) |
|
field : |
(* |
Field to filter. Possible values:
| *) |
|
fieldIndex : |
(* |
The Index of the custom dimension. Set only if the field is a is CUSTOM_DIMENSION.
| *) |
|
kind : |
(* |
Kind value for filter expression
| *) |
|
matchType : |
(* |
Match type for this filter. Possible values are BEGINS_WITH, EQUAL, ENDS_WITH, CONTAINS, or MATCHES. GEO_DOMAIN, GEO_IP_ADDRESS, PAGE_REQUEST_URI, or PAGE_HOSTNAME filters can use any match type; all other filters must use MATCHES.
| *) |
val caseSensitive : (t, bool) GapiLens.t
val expressionValue : (t, string) GapiLens.t
val field : (t, string) GapiLens.t
val fieldIndex : (t, int) GapiLens.t
val kind : (t, string) GapiLens.t
val matchType : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t