Show / Hide Table of Contents

Class Goal.UrlDestinationDetailsData

Details for the goal of the type URL_DESTINATION.

Inheritance
System.Object
Goal.UrlDestinationDetailsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class UrlDestinationDetailsData

Properties

CaseSensitive

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

Declaration
[JsonProperty("caseSensitive")]
public virtual bool? CaseSensitive { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

FirstStepRequired

Determines if the first step in this goal is required.

Declaration
[JsonProperty("firstStepRequired")]
public virtual bool? FirstStepRequired { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

MatchType

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

Declaration
[JsonProperty("matchType")]
public virtual string MatchType { get; set; }
Property Value
Type Description
System.String

Steps

List of steps configured for this goal funnel.

Declaration
[JsonProperty("steps")]
public virtual IList<Goal.UrlDestinationDetailsData.StepsData> Steps { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Goal.UrlDestinationDetailsData.StepsData>

Url

URL for this goal.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top