class Google::Apis::SearchconsoleV1::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.
Attributes
filters[RW]
Corresponds to the JSON property `filters` @return [Array<Google::Apis::SearchconsoleV1::ApiDimensionFilter>]
group_type[RW]
Corresponds to the JSON property `groupType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/searchconsole_v1/classes.rb, line 120 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/searchconsole_v1/classes.rb, line 125 def update!(**args) @filters = args[:filters] if args.key?(:filters) @group_type = args[:group_type] if args.key?(:group_type) end