class Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusBreakdownByDetailResponse

Response message for listing all details associated with a given filtered bid reason.

Attributes

detail_type[RW]

The type of detail that the detail IDs represent. Corresponds to the JSON property `detailType` @return [String]

filtered_bid_detail_rows[RW]

List of rows, with counts of bids with a given creative status aggregated by detail. Corresponds to the JSON property `filteredBidDetailRows` @return [Array<Google::Apis::Adexchangebuyer2V2beta1::FilteredBidDetailRow>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2251
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2256
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