Class: Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusBreakdownByDetailResponse
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusBreakdownByDetailResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
Response message for listing all details associated with a given filtered bid reason.
Instance Attribute Summary collapse
-
#detail_type ⇒ String
The type of detail that the detail IDs represent.
-
#filtered_bid_detail_rows ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::FilteredBidDetailRow>
List of rows, with counts of bids with a given creative status aggregated by detail.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCreativeStatusBreakdownByDetailResponse
constructor
A new instance of ListCreativeStatusBreakdownByDetailResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCreativeStatusBreakdownByDetailResponse
Returns a new instance of ListCreativeStatusBreakdownByDetailResponse.
2254 2255 2256 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detail_type ⇒ String
The type of detail that the detail IDs represent.
Corresponds to the JSON property detailType
2238 2239 2240 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2238 def detail_type @detail_type end |
#filtered_bid_detail_rows ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::FilteredBidDetailRow>
List of rows, with counts of bids with a given creative status aggregated by
detail.
Corresponds to the JSON property filteredBidDetailRows
2244 2245 2246 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2244 def filtered_bid_detail_rows @filtered_bid_detail_rows end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass this value in the
ListCreativeStatusBreakdownByDetailRequest.pageToken field in the subsequent
call to the filteredBids.details.list method to retrieve the next page of
results.
Corresponds to the JSON property nextPageToken
2252 2253 2254 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2252 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2259 2260 2261 2262 2263 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2259 def update!(**args) @detail_type = args[:detail_type] if args.key?(:detail_type) @filtered_bid_detail_rows = args[:filtered_bid_detail_rows] if args.key?(:filtered_bid_detail_rows) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |