class Google::Apis::DfareportingV3_5::DimensionFilter
Represents a dimension filter.
Attributes
dimension_name[RW]
The name of the dimension to filter. Corresponds to the JSON property `dimensionName` @return [String]
kind[RW]
The kind of resource this is, in this case dfareporting#dimensionFilter. Corresponds to the JSON property `kind` @return [String]
value[RW]
The value of the dimension to filter. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 5000 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 5005 def update!(**args) @dimension_name = args[:dimension_name] if args.key?(:dimension_name) @kind = args[:kind] if args.key?(:kind) @value = args[:value] if args.key?(:value) end