class Google::Apis::DfareportingV2_1::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 generated/google/apis/dfareporting_v2_1/classes.rb, line 9959 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_1/classes.rb, line 9964 def update!(**args) @kind = args[:kind] unless args[:kind].nil? @name = args[:name] unless args[:name].nil? @sort_order = args[:sort_order] unless args[:sort_order].nil? end