Show / Hide Table of Contents

Class Goal.EventDetailsData.EventConditionsData

List of event conditions.

Inheritance
System.Object
Goal.EventDetailsData.EventConditionsData
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 EventConditionsData

Properties

ComparisonType

Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.

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

ComparisonValue

Value used for this comparison.

Declaration
[JsonProperty("comparisonValue")]
public virtual long? ComparisonValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Expression

Expression used for this match.

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

MatchType

Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.

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

Type

Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.

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