module UrlDestinationDetails:sig..end
module Steps:sig..end
type t = {
|
caseSensitive : |
(* |
Determines if the goal URL must exactly match the capitalization of visited URLs.
| *) |
|
firstStepRequired : |
(* |
Determines if the first step in this goal is required.
| *) |
|
matchType : |
(* |
Match type for the goal URL. Possible values are HEAD, EXACT, or REGEX.
| *) |
|
steps : |
(* |
List of steps configured for this goal funnel.
| *) |
|
url : |
(* |
URL for this goal.
| *) |
val caseSensitive : (t, bool) GapiLens.t
val firstStepRequired : (t, bool) GapiLens.t
val matchType : (t, string) GapiLens.t
val steps : (t,
Steps.t list)
GapiLens.t
val url : (t, string) GapiLens.t
val empty : t
val render : t ->
GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t