Class: Google::Apis::Adexchangebuyer2V2beta1::CreativeStatusRow
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::CreativeStatusRow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
The number of bids with the specified dimension values that did not win the auction (either were filtered pre-auction or lost the auction), as described by the specified creative status.
Instance Attribute Summary collapse
-
#bid_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 (i.e. when sampled).
-
#creative_status_id ⇒ Fixnum
The ID of the creative status.
-
#row_dimensions ⇒ Google::Apis::Adexchangebuyer2V2beta1::RowDimensions
A response may include multiple rows, breaking down along various dimensions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreativeStatusRow
constructor
A new instance of CreativeStatusRow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreativeStatusRow
Returns a new instance of CreativeStatusRow.
1012 1013 1014 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1012 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bid_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 (i.e. when sampled).
Corresponds to the JSON property bidCount
998 999 1000 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 998 def bid_count @bid_count end |
#creative_status_id ⇒ Fixnum
The ID of the creative status. See creative-status-codes.
Corresponds to the JSON property creativeStatusId
1004 1005 1006 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1004 def creative_status_id @creative_status_id 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
1010 1011 1012 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1010 def row_dimensions @row_dimensions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1017 1018 1019 1020 1021 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1017 def update!(**args) @bid_count = args[:bid_count] if args.key?(:bid_count) @creative_status_id = args[:creative_status_id] if args.key?(:creative_status_id) @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions) end |