Class: Google::Apis::AdmobV1beta::NetworkReportSpecSortCondition
- Inherits:
-
Object
- Object
- Google::Apis::AdmobV1beta::NetworkReportSpecSortCondition
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admob_v1beta/classes.rb,
lib/google/apis/admob_v1beta/representations.rb,
lib/google/apis/admob_v1beta/representations.rb
Overview
Sorting direction to be applied on a dimension or a metric.
Instance Attribute Summary collapse
-
#dimension ⇒ String
Sort by the specified dimension.
-
#metric ⇒ String
Sort by the specified metric.
-
#order ⇒ String
Sorting order of the dimension or metric.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkReportSpecSortCondition
constructor
A new instance of NetworkReportSpecSortCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkReportSpecSortCondition
Returns a new instance of NetworkReportSpecSortCondition.
848 849 850 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 848 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension ⇒ String
Sort by the specified dimension.
Corresponds to the JSON property dimension
836 837 838 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 836 def dimension @dimension end |
#metric ⇒ String
Sort by the specified metric.
Corresponds to the JSON property metric
841 842 843 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 841 def metric @metric end |
#order ⇒ String
Sorting order of the dimension or metric.
Corresponds to the JSON property order
846 847 848 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 846 def order @order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
853 854 855 856 857 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 853 def update!(**args) @dimension = args[:dimension] if args.key?(:dimension) @metric = args[:metric] if args.key?(:metric) @order = args[:order] if args.key?(:order) end |