module AdvancedDetails:sig..end
type t = {
|
caseSensitive : |
(* |
Indicates if the filter expressions are case sensitive.
| *) |
|
extractA : |
(* |
Expression to extract from field A.
| *) |
|
extractB : |
(* |
Expression to extract from field B.
| *) |
|
fieldA : |
(* |
Field A.
| *) |
|
fieldAIndex : |
(* |
The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.
| *) |
|
fieldARequired : |
(* |
Indicates if field A is required to match.
| *) |
|
fieldB : |
(* |
Field B.
| *) |
|
fieldBIndex : |
(* |
The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.
| *) |
|
fieldBRequired : |
(* |
Indicates if field B is required to match.
| *) |
|
outputConstructor : |
(* |
Expression used to construct the output value.
| *) |
|
outputToField : |
(* |
Output field.
| *) |
|
outputToFieldIndex : |
(* |
The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.
| *) |
|
overrideOutputField : |
(* |
Indicates if the existing value of the output field, if any, should be overridden by the output expression.
| *) |
val caseSensitive : (t, bool) GapiLens.t
val extractA : (t, string) GapiLens.t
val extractB : (t, string) GapiLens.t
val fieldA : (t, string) GapiLens.t
val fieldAIndex : (t, int) GapiLens.t
val fieldARequired : (t, bool) GapiLens.t
val fieldB : (t, string) GapiLens.t
val fieldBIndex : (t, int) GapiLens.t
val fieldBRequired : (t, bool) GapiLens.t
val outputConstructor : (t, string) GapiLens.t
val outputToField : (t, string) GapiLens.t
val outputToFieldIndex : (t, int) GapiLens.t
val overrideOutputField : (t, bool) GapiLens.t
val empty : t
val render : t ->
GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t