class Google::Apis::Adexchangebuyer2V2beta1::FilteredBidDetailRow

The number of filtered bids with the specified dimension values, among those filtered due to the requested filtering reason (i.e. creative status), that have the specified detail.

Attributes

bid_count[RW]

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` @return [Google::Apis::Adexchangebuyer2V2beta1::MetricValue]

detail[RW]

The ID of the detail, can be numeric or text. The associated value can be looked up in the dictionary file corresponding to the DetailType in the response message. Corresponds to the JSON property `detail` @return [String]

detail_id[RW]

Note: this field will be deprecated, use “detail” field instead. When “detail” field represents an integer value, this field is populated as the same integer value “detail” field represents, otherwise this field will be 0. The ID of the detail. The associated value can be looked up in the dictionary file corresponding to the DetailType in the response message. Corresponds to the JSON property `detailId` @return [Fixnum]

row_dimensions[RW]

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` @return [Google::Apis::Adexchangebuyer2V2beta1::RowDimensions]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1748
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 1753
def update!(**args)
  @bid_count = args[:bid_count] if args.key?(:bid_count)
  @detail = args[:detail] if args.key?(:detail)
  @detail_id = args[:detail_id] if args.key?(:detail_id)
  @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions)
end