Class: Google::Apis::DfareportingV2_8::Dimension
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_8::Dimension
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Dimension
Returns a new instance of Dimension
4724 4725 4726 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4724 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
4717 4718 4719 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4717 def kind @kind end |
#name ⇒ String
The dimension name, e.g. dfa:advertiser
Corresponds to the JSON property name
4722 4723 4724 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4722 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4729 4730 4731 4732 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4729 def update!(**args) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end |