Show / Hide Table of Contents

Class ApiDimensionFilter

A filter test to be applied to each row in the data set, where a match can return the row. Filters are string comparisons, and values and dimension names are not case-sensitive. Individual filters are either AND'ed or OR'ed within their parent filter group, according to the group's group type. You do not need to group by a specified dimension to filter against it.

Inheritance
System.Object
ApiDimensionFilter
Implements
IDirectResponseSchema
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.SearchConsole.v1.Data
Assembly: Google.Apis.SearchConsole.v1.dll
Syntax
public class ApiDimensionFilter : IDirectResponseSchema

Properties

Dimension

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Expression

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

Operator__

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

Implements

IDirectResponseSchema
Back to top