Class: Google::Apis::DfareportingV3_4::PathReportDimensionValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb

Overview

Represents a PathReportDimensionValue resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PathReportDimensionValue

Returns a new instance of PathReportDimensionValue.



8723
8724
8725
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8723

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dimension_nameString

The name of the dimension. Corresponds to the JSON property dimensionName

Returns:

  • (String)


8696
8697
8698
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8696

def dimension_name
  @dimension_name
end

#idsArray<String>

The possible ID's associated with the value if available. Corresponds to the JSON property ids

Returns:

  • (Array<String>)


8701
8702
8703
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8701

def ids
  @ids
end

#kindString

The kind of resource this is, in this case dfareporting# pathReportDimensionValue. Corresponds to the JSON property kind

Returns:

  • (String)


8707
8708
8709
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8707

def kind
  @kind
end

#match_typeString

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

Returns:

  • (String)


8716
8717
8718
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8716

def match_type
  @match_type
end

#valuesArray<String>

The possible values of the dimension. Corresponds to the JSON property values

Returns:

  • (Array<String>)


8721
8722
8723
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8721

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8728
8729
8730
8731
8732
8733
8734
# File 'generated/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