Class: Google::Apis::DfareportingV3_3::SortedDimension
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_3::SortedDimension
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/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.
10973 10974 10975 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10973 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
10961 10962 10963 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10961 def kind @kind end |
#name ⇒ String
The name of the dimension.
Corresponds to the JSON property name
10966 10967 10968 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10966 def name @name end |
#sort_order ⇒ String
An optional sort order for the dimension column.
Corresponds to the JSON property sortOrder
10971 10972 10973 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10971 def sort_order @sort_order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10978 10979 10980 10981 10982 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 10978 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 |