Class: Google::Apis::Adexchangebuyer2V2beta1::NonBillableWinningBidStatusRow
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::Adexchangebuyer2V2beta1::NonBillableWinningBidStatusRow
 
- 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 winning bids with the specified dimension values for which the buyer was not billed, as described by the specified 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). 
- 
  
    
      #row_dimensions  ⇒ Google::Apis::Adexchangebuyer2V2beta1::RowDimensions 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A response may include multiple rows, breaking down along various dimensions. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status specifying why the winning bids were not billed. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NonBillableWinningBidStatusRow 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NonBillableWinningBidStatusRow. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ NonBillableWinningBidStatusRow
Returns a new instance of NonBillableWinningBidStatusRow
| 1848 1849 1850 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1848 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
| 1835 1836 1837 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1835 def bid_count @bid_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
| 1841 1842 1843 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1841 def row_dimensions @row_dimensions end | 
#status ⇒ String
The status specifying why the winning bids were not billed.
Corresponds to the JSON property status
| 1846 1847 1848 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1846 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1853 1854 1855 1856 1857 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1853 def update!(**args) @bid_count = args[:bid_count] if args.key?(:bid_count) @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions) @status = args[:status] if args.key?(:status) end |