Class: Google::Apis::DfareportingV3_4::SortedDimension
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::SortedDimension
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb
Overview
Represents a sorted dimension.
Instance Attribute Summary collapse
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting#sortedDimension.
-
#name ⇒ String
The name of the dimension.
-
#sort_order ⇒ String
An optional sort order for the dimension column.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SortedDimension
constructor
A new instance of SortedDimension.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SortedDimension
Returns a new instance of SortedDimension.
11920 11921 11922 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11920 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The kind of resource this is, in this case dfareporting#sortedDimension.
Corresponds to the JSON property kind
11908 11909 11910 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11908 def kind @kind end |
#name ⇒ String
The name of the dimension.
Corresponds to the JSON property name
11913 11914 11915 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11913 def name @name end |
#sort_order ⇒ String
An optional sort order for the dimension column.
Corresponds to the JSON property sortOrder
11918 11919 11920 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11918 def sort_order @sort_order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11925 11926 11927 11928 11929 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11925 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 |