Show / Hide Table of Contents

Class ApiDimensionFilterGroup

A set of dimension value filters to test against each row. Only rows that pass all filter groups will be returned. All results within a filter group are either AND'ed or OR'ed together, depending on the group type selected. All filter groups are AND'ed together.

Inheritance
System.Object
ApiDimensionFilterGroup
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 ApiDimensionFilterGroup : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Filters

Declaration
[JsonProperty("filters")]
public virtual IList<ApiDimensionFilter> Filters { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ApiDimensionFilter>

GroupType

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

Implements

IDirectResponseSchema
Back to top