class Google::Apis::DfareportingV3_5::DimensionValue
Represents a DimensionValue
resource.
Attributes
The name of the dimension. Corresponds to the JSON property `dimensionName` @return [String]
The eTag of this response for caching purposes. Corresponds to the JSON property `etag` @return [String]
The ID associated with the value if available. Corresponds to the JSON property `id` @return [String]
The kind of resource this is, in this case dfareporting#dimensionValue. Corresponds to the JSON property `kind` @return [String]
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 `matchType` @return [String]
The value of the dimension. Corresponds to the JSON property `value` @return [String]
Public Class Methods
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 5050 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 5055 def update!(**args) @dimension_name = args[:dimension_name] if args.key?(:dimension_name) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @match_type = args[:match_type] if args.key?(:match_type) @value = args[:value] if args.key?(:value) end