Class: Google::Apis::DfareportingV4::Dimension

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Dimension

Returns a new instance of Dimension.



5317
5318
5319
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5317

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)


5310
5311
5312
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5310

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


5315
5316
5317
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5315

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5322
5323
5324
5325
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5322

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