Class: Google::Apis::DoubleclicksearchV2::ReportRequest::OrderBy
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclicksearchV2::ReportRequest::OrderBy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/doubleclicksearch_v2/classes.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb
Instance Attribute Summary collapse
-
#column ⇒ Google::Apis::DoubleclicksearchV2::ReportApiColumnSpec
A request object used to create a DoubleClick Search report.
-
#sort_order ⇒ String
The sort direction, which is either
ascending
ordescending
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderBy
constructor
A new instance of OrderBy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrderBy
Returns a new instance of OrderBy.
791 792 793 |
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 791 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column ⇒ Google::Apis::DoubleclicksearchV2::ReportApiColumnSpec
A request object used to create a DoubleClick Search report.
Corresponds to the JSON property column
784 785 786 |
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 784 def column @column end |
#sort_order ⇒ String
The sort direction, which is either ascending
or descending
.
Corresponds to the JSON property sortOrder
789 790 791 |
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 789 def sort_order @sort_order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
796 797 798 799 |
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 796 def update!(**args) @column = args[:column] if args.key?(:column) @sort_order = args[:sort_order] if args.key?(:sort_order) end |