class Google::Apis::DfareportingV3_5::PathFilter
Represents a DfaReporting path filter.
Attributes
event_filters[RW]
Event filters in path report. Corresponds to the JSON property `eventFilters` @return [Array<Google::Apis::DfareportingV3_5::EventFilter>]
kind[RW]
The kind of resource this is, in this case dfareporting#pathFilter. Corresponds to the JSON property `kind` @return [String]
path_match_position[RW]
Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT. Corresponds to the JSON property `pathMatchPosition` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 8274 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 8279 def update!(**args) @event_filters = args[:event_filters] if args.key?(:event_filters) @kind = args[:kind] if args.key?(:kind) @path_match_position = args[:path_match_position] if args.key?(:path_match_position) end