class Google::Apis::DfareportingV3_5::SortedDimension

Represents a sorted dimension.

Attributes

kind[RW]

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

name[RW]

The name of the dimension. Corresponds to the JSON property `name` @return [String]

sort_order[RW]

An optional sort order for the dimension column. Corresponds to the JSON property `sortOrder` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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