Show / Hide Table of Contents

Class Filter.AdvancedDetailsData

Details for the filter of the type ADVANCED.

Inheritance
System.Object
Filter.AdvancedDetailsData
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 AdvancedDetailsData

Properties

CaseSensitive

Indicates if the filter expressions are case sensitive.

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

ExtractA

Expression to extract from field A.

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

ExtractB

Expression to extract from field B.

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

FieldA

Field A.

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

FieldAIndex

The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.

Declaration
[JsonProperty("fieldAIndex")]
public virtual int? FieldAIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

FieldARequired

Indicates if field A is required to match.

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

FieldB

Field B.

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

FieldBIndex

The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.

Declaration
[JsonProperty("fieldBIndex")]
public virtual int? FieldBIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

FieldBRequired

Indicates if field B is required to match.

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

OutputConstructor

Expression used to construct the output value.

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

OutputToField

Output field.

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

OutputToFieldIndex

The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.

Declaration
[JsonProperty("outputToFieldIndex")]
public virtual int? OutputToFieldIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

OverrideOutputField

Indicates if the existing value of the output field, if any, should be overridden by the output expression.

Declaration
[JsonProperty("overrideOutputField")]
public virtual bool? OverrideOutputField { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
In This Article
Back to top