package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Steps : sig ... end
type t = {
  1. caseSensitive : bool;
    (*

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

    *)
  2. firstStepRequired : bool;
    (*

    Determines if the first step in this goal is required.

    *)
  3. matchType : string;
    (*

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

    *)
  4. steps : Steps.t list;
    (*

    List of steps configured for this goal funnel.

    *)
  5. 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