package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Goal.UrlDestinationDetailsSource

Sourcemodule Steps : sig ... end
Sourcetype 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.

    *)
}
Sourceval caseSensitive : (t, bool) GapiLens.t
Sourceval firstStepRequired : (t, bool) GapiLens.t
Sourceval matchType : (t, string) GapiLens.t
Sourceval steps : (t, Steps.t list) GapiLens.t
Sourceval url : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list