Class: Google::Apis::Adexchangebuyer2V2beta1::FilteredBidCreativeRow
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::Adexchangebuyer2V2beta1::FilteredBidCreativeRow
 
- 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 that have the specified creative.
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_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the creative. 
- 
  
    
      #row_dimensions  ⇒ Google::Apis::Adexchangebuyer2V2beta1::RowDimensions 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A response may include multiple rows, breaking down along various dimensions. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FilteredBidCreativeRow 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FilteredBidCreativeRow. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FilteredBidCreativeRow
Returns a new instance of FilteredBidCreativeRow
| 987 988 989 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 987 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
| 974 975 976 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 974 def bid_count @bid_count end | 
#creative_id ⇒ String
The ID of the creative.
Corresponds to the JSON property creativeId
| 979 980 981 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 979 def creative_id @creative_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
| 985 986 987 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 985 def row_dimensions @row_dimensions end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 992 993 994 995 996 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 992 def update!(**args) @bid_count = args[:bid_count] if args.key?(:bid_count) @creative_id = args[:creative_id] if args.key?(:creative_id) @row_dimensions = args[:row_dimensions] if args.key?(:row_dimensions) end |