Class: Google::Apis::Adexchangebuyer2V2beta1::FilteredBidDetailRow

Inherits:
Object
  • Object
show all
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 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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FilteredBidDetailRow

Returns a new instance of FilteredBidDetailRow.



1785
1786
1787
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1785

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bid_countGoogle::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



1771
1772
1773
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1771

def bid_count
  @bid_count
end

#detail_idFixnum

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

Returns:

  • (Fixnum)


1777
1778
1779
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1777

def detail_id
  @detail_id
end

#row_dimensionsGoogle::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



1783
1784
1785
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1783

def row_dimensions
  @row_dimensions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1790
1791
1792
1793
1794
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1790

def update!(**args)
  @bid_count = args[:bid_count] if args.key?(:bid_count)
  @detail_id = args[:detail_id] if args.key?(:detail_id)
  @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions)
end