class Google::Apis::DfareportingV2_3::Dimension

Represents a dimension.

Attributes

kind[RW]

The kind of resource this is, in this case dfareporting#dimension. Corresponds to the JSON property `kind` @return [String]

name[RW]

The dimension name, e.g. dfa:advertiser Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 4152
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dfareporting_v2_3/classes.rb, line 4157
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end