class Google::Apis::DfareportingV2_1::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 generated/google/apis/dfareporting_v2_1/classes.rb, line 4189 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 4194 def update!(**args) @dimension_name = args[:dimension_name] unless args[:dimension_name].nil? @etag = args[:etag] unless args[:etag].nil? @id = args[:id] unless args[:id].nil? @kind = args[:kind] unless args[:kind].nil? @match_type = args[:match_type] unless args[:match_type].nil? @value = args[:value] unless args[:value].nil? end