Class: Google::Apis::Adexchangebuyer2V2beta1::BidResponseWithoutBidsStatusRow
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::BidResponseWithoutBidsStatusRow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
The number of impressions with the specified dimension values that were considered to have no applicable bids, as described by the specified status.
Instance Attribute Summary collapse
-
#impression_count ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that may be either exact or estimated (for example, when sampled).
-
#row_dimensions ⇒ Google::Apis::Adexchangebuyer2V2beta1::RowDimensions
A response may include multiple rows, breaking down along various dimensions.
-
#status ⇒ String
The status specifying why the bid responses were considered to have no applicable bids.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BidResponseWithoutBidsStatusRow
constructor
A new instance of BidResponseWithoutBidsStatusRow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BidResponseWithoutBidsStatusRow
Returns a new instance of BidResponseWithoutBidsStatusRow.
328 329 330 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 328 def initialize(**args) update!(**args) end |
Instance Attribute Details
#impression_count ⇒ Google::Apis::Adexchangebuyer2V2beta1::MetricValue
A metric value, with an expected value and a variance; represents a count that
may be either exact or estimated (for example, when sampled).
Corresponds to the JSON property impressionCount
314 315 316 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 314 def impression_count @impression_count end |
#row_dimensions ⇒ Google::Apis::Adexchangebuyer2V2beta1::RowDimensions
A response may include multiple rows, breaking down along various dimensions.
Encapsulates the values of all dimensions for a given row.
Corresponds to the JSON property rowDimensions
320 321 322 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 320 def row_dimensions @row_dimensions end |
#status ⇒ String
The status specifying why the bid responses were considered to have no
applicable bids.
Corresponds to the JSON property status
326 327 328 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 326 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
333 334 335 336 337 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 333 def update!(**args) @impression_count = args[:impression_count] if args.key?(:impression_count) @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions) @status = args[:status] if args.key?(:status) end |