Module Goal.UrlDestinationDetails

module Steps : sig ... end
type t = {
caseSensitive : bool;(*

Determines if the goal URL must exactly match the capitalization of visited URLs.

*)
firstStepRequired : bool;(*

Determines if the first step in this goal is required.

*)
matchType : string;(*

Match type for the goal URL. Possible values are HEAD, EXACT, or REGEX.

*)
steps : Steps.t list;(*

List of steps configured for this goal funnel.

*)
url : string;(*

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