Class: Google::Apis::DfareportingV3_5::Dimension

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 dimension.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Dimension

Returns a new instance of Dimension.



4972
4973
4974
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4972

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)


4965
4966
4967
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4965

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


4970
4971
4972
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4970

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4977
4978
4979
4980
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 4977

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