Class: Google::Apis::DfareportingV3_5::PathReportDimensionValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/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.



8371
8372
8373
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8371

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

Instance Attribute Details

#dimension_nameString

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

Returns:

  • (String)


8344
8345
8346
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8344

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>)


8349
8350
8351
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8349

def ids
  @ids
end

#kindString

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

Returns:

  • (String)


8355
8356
8357
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8355

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)


8364
8365
8366
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8364

def match_type
  @match_type
end

#valuesArray<String>

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

Returns:

  • (Array<String>)


8369
8370
8371
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8369

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8376
8377
8378
8379
8380
8381
8382
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8376

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