Class: Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusAndCreativeBreakdownByDetailResponse
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::ListCreativeStatusAndCreativeBreakdownByDetailResponse
- 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 details associated with a given filtered bid reason and a given creative.
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 and creative, aggregated by detail.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCreativeStatusAndCreativeBreakdownByDetailResponse
constructor
A new instance of ListCreativeStatusAndCreativeBreakdownByDetailResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCreativeStatusAndCreativeBreakdownByDetailResponse
Returns a new instance of ListCreativeStatusAndCreativeBreakdownByDetailResponse
1884 1885 1886 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1884 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
1882 1883 1884 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1882 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 and
creative, aggregated by detail.
Corresponds to the JSON property filteredBidDetailRows
1867 1868 1869 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1867 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
ListCreativeStatusAndCreativeBreakdownByDetailRequest.pageToken
field in the subsequent call to the
accounts.filterSets.filteredBids.creatives.details.list
method to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
1877 1878 1879 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1877 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1889 1890 1891 1892 1893 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1889 def update!(**args) @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) @detail_type = args[:detail_type] if args.key?(:detail_type) end |