class Google::Apis::DfareportingV2_1::DimensionValue

Represents a DimensionValue resource.

Attributes

dimension_name[RW]

The name of the dimension. Corresponds to the JSON property `dimensionName` @return [String]

etag[RW]

The eTag of this response for caching purposes. Corresponds to the JSON property `etag` @return [String]

id[RW]

The ID associated with the value if available. Corresponds to the JSON property `id` @return [String]

kind[RW]

The kind of resource this is, in this case dfareporting#dimensionValue. Corresponds to the JSON property `kind` @return [String]

match_type[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 `matchType` @return [String]

value[RW]

The value of the dimension. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 4189
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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