Class: Google::Apis::AnalyticsdataV1beta::DimensionOrderBy
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsdataV1beta::DimensionOrderBy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsdata_v1beta/classes.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb
Overview
Sorts by dimension values.
Instance Attribute Summary collapse
-
#dimension_name ⇒ String
A dimension name in the request to order by.
-
#order_type ⇒ String
Controls the rule for dimension value ordering.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DimensionOrderBy
constructor
A new instance of DimensionOrderBy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DimensionOrderBy
Returns a new instance of DimensionOrderBy.
677 678 679 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 677 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_name ⇒ String
A dimension name in the request to order by.
Corresponds to the JSON property dimensionName
670 671 672 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 670 def dimension_name @dimension_name end |
#order_type ⇒ String
Controls the rule for dimension value ordering.
Corresponds to the JSON property orderType
675 676 677 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 675 def order_type @order_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
682 683 684 685 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 682 def update!(**args) @dimension_name = args[:dimension_name] if args.key?(:dimension_name) @order_type = args[:order_type] if args.key?(:order_type) end |