Class: Google::Apis::DfareportingV2_7::Dimension

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

Overview

Represents a dimension.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Dimension

Returns a new instance of Dimension



4588
4589
4590
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4588

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


4581
4582
4583
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4581

def kind
  @kind
end

#nameString

The dimension name, e.g. dfa:advertiser Corresponds to the JSON property name

Returns:

  • (String)


4586
4587
4588
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4586

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4593
4594
4595
4596
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4593

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end