Class: Google::Apis::DoubleclickbidmanagerV1::Parameters
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1::Parameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/doubleclickbidmanager_v1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb
Overview
Parameters of a query or report.
Instance Attribute Summary collapse
-
#filters ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::FilterPair>
Filters used to match traffic data in your report.
-
#group_bys ⇒ Array<String>
Data is grouped by the filters listed in this field.
-
#include_invite_data ⇒ Boolean
(also: #include_invite_data?)
Whether to include data from Invite Media.
-
#metrics ⇒ Array<String>
Metrics to include as columns in your report.
-
#type ⇒ String
Report type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Parameters
constructor
A new instance of Parameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Parameters
Returns a new instance of Parameters
287 288 289 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 287 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filters ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::FilterPair>
Filters used to match traffic data in your report.
Corresponds to the JSON property filters
264 265 266 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 264 def filters @filters end |
#group_bys ⇒ Array<String>
Data is grouped by the filters listed in this field.
Corresponds to the JSON property groupBys
269 270 271 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 269 def group_bys @group_bys end |
#include_invite_data ⇒ Boolean Also known as: include_invite_data?
Whether to include data from Invite Media.
Corresponds to the JSON property includeInviteData
274 275 276 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 274 def include_invite_data @include_invite_data end |
#metrics ⇒ Array<String>
Metrics to include as columns in your report.
Corresponds to the JSON property metrics
280 281 282 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 280 def metrics @metrics end |
#type ⇒ String
Report type.
Corresponds to the JSON property type
285 286 287 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 285 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
292 293 294 295 296 297 298 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 292 def update!(**args) @filters = args[:filters] if args.key?(:filters) @group_bys = args[:group_bys] if args.key?(:group_bys) @include_invite_data = args[:include_invite_data] if args.key?(:include_invite_data) @metrics = args[:metrics] if args.key?(:metrics) @type = args[:type] if args.key?(:type) end |