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
| 1389 1390 1391 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1389 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
| 1378 1379 1380 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1378 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
| 1387 1388 1389 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1387 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1394 1395 1396 1397 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1394 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 |