Class: Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusBreakdownByCreativeResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusBreakdownByCreativeResponse
 
 
- 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
Response message for listing all creatives associated with a given filtered bid reason.
Instance Attribute Summary collapse
- 
  
    
      #filtered_bid_creative_rows  ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::FilteredBidCreativeRow> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of rows, with counts of bids with a given creative status aggregated by creative.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token to retrieve the next page of results.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListCreativeStatusBreakdownByCreativeResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListCreativeStatusBreakdownByCreativeResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCreativeStatusBreakdownByCreativeResponse
Returns a new instance of ListCreativeStatusBreakdownByCreativeResponse
      2246 2247 2248  | 
    
      # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2246 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#filtered_bid_creative_rows ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::FilteredBidCreativeRow>
List of rows, with counts of bids with a given creative status aggregated
by creative.
Corresponds to the JSON property filteredBidCreativeRows
      2235 2236 2237  | 
    
      # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2235 def filtered_bid_creative_rows @filtered_bid_creative_rows end  | 
  
#next_page_token ⇒ String
A token to retrieve the next page of results.
Pass this value in the
ListCreativeStatusBreakdownByCreativeRequest.pageToken
field in the subsequent call to the filteredBids.creatives.list
method to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
      2244 2245 2246  | 
    
      # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2244 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2251 2252 2253 2254  | 
    
      # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2251 def update!(**args) @filtered_bid_creative_rows = args[:filtered_bid_creative_rows] if args.key?(:filtered_bid_creative_rows) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |