class Google::Apis::SearchconsoleV1::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.
Attributes
dimension[RW]
Corresponds to the JSON property `dimension` @return [String]
expression[RW]
Corresponds to the JSON property `expression` @return [String]
operator[RW]
Corresponds to the JSON property `operator` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/searchconsole_v1/classes.rb, line 91 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 96 def update!(**args) @dimension = args[:dimension] if args.key?(:dimension) @expression = args[:expression] if args.key?(:expression) @operator = args[:operator] if args.key?(:operator) end