Module GapiAnalyticsV3Model.Goal.EventDetails.EventConditions

module EventConditions: sig .. end

type t = {
   comparisonType : string; (*
Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
*)
   comparisonValue : int64; (*
Value used for this comparison.
*)
   expression : string; (*
Expression used for this match.
*)
   matchType : string; (*
Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
*)
   _type : string; (*
Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
*)
}
val comparisonType : (t, string) GapiLens.t
val comparisonValue : (t, int64) GapiLens.t
val expression : (t, string) GapiLens.t
val matchType : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val empty : t
val render : t ->
GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model ->
t