Class: Google::Apis::AdmobV1::MediationReportSpecSortCondition
- Inherits:
-
Object
- Object
- Google::Apis::AdmobV1::MediationReportSpecSortCondition
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admob_v1/classes.rb,
generated/google/apis/admob_v1/representations.rb,
generated/google/apis/admob_v1/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) ⇒ MediationReportSpecSortCondition
constructor
A new instance of MediationReportSpecSortCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MediationReportSpecSortCondition
Returns a new instance of MediationReportSpecSortCondition.
434 435 436 |
# File 'generated/google/apis/admob_v1/classes.rb', line 434 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension ⇒ String
Sort by the specified dimension.
Corresponds to the JSON property dimension
422 423 424 |
# File 'generated/google/apis/admob_v1/classes.rb', line 422 def dimension @dimension end |
#metric ⇒ String
Sort by the specified metric.
Corresponds to the JSON property metric
427 428 429 |
# File 'generated/google/apis/admob_v1/classes.rb', line 427 def metric @metric end |
#order ⇒ String
Sorting order of the dimension or metric.
Corresponds to the JSON property order
432 433 434 |
# File 'generated/google/apis/admob_v1/classes.rb', line 432 def order @order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
439 440 441 442 443 |
# File 'generated/google/apis/admob_v1/classes.rb', line 439 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 |