class Google::Apis::DfareportingV3_4::PathReportDimensionValue

Represents a PathReportDimensionValue resource.

Attributes

dimension_name[RW]

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

ids[RW]

The possible ID's associated with the value if available. Corresponds to the JSON property `ids` @return [Array<String>]

kind[RW]

The kind of resource this is, in this case dfareporting# pathReportDimensionValue. 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]

values[RW]

The possible values of the dimension. Corresponds to the JSON property `values` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 8723
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_4/classes.rb, line 8728
def update!(**args)
  @dimension_name = args[:dimension_name] if args.key?(:dimension_name)
  @ids = args[:ids] if args.key?(:ids)
  @kind = args[:kind] if args.key?(:kind)
  @match_type = args[:match_type] if args.key?(:match_type)
  @values = args[:values] if args.key?(:values)
end