Class: Google::Apis::DfareportingV4::Dimension
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::Dimension
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Represents a dimension.
Instance Attribute Summary collapse
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting#dimension.
-
#name ⇒ String
The dimension name, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Dimension
constructor
A new instance of Dimension.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Dimension
Returns a new instance of Dimension.
5448 5449 5450 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The kind of resource this is, in this case dfareporting#dimension.
Corresponds to the JSON property kind
5441 5442 5443 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5441 def kind @kind end |
#name ⇒ String
The dimension name, e.g. advertiser
Corresponds to the JSON property name
5446 5447 5448 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5446 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5453 5454 5455 5456 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5453 def update!(**args) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end |