Class: Google::Apis::RealtimebiddingV1::ListBiddersResponse
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::ListBiddersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/realtimebidding_v1/classes.rb,
lib/google/apis/realtimebidding_v1/representations.rb,
lib/google/apis/realtimebidding_v1/representations.rb
Overview
A response containing bidders.
Instance Attribute Summary collapse
-
#bidders ⇒ Array<Google::Apis::RealtimebiddingV1::Bidder>
List of bidders.
-
#next_page_token ⇒ String
A token which can be passed to a subsequent call to the
ListBidders
method to retrieve the next page of results in ListBiddersRequest.pageToken.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBiddersResponse
constructor
A new instance of ListBiddersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBiddersResponse
Returns a new instance of ListBiddersResponse.
1273 1274 1275 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1273 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bidders ⇒ Array<Google::Apis::RealtimebiddingV1::Bidder>
List of bidders.
Corresponds to the JSON property bidders
1265 1266 1267 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1265 def bidders @bidders end |
#next_page_token ⇒ String
A token which can be passed to a subsequent call to the ListBidders
method
to retrieve the next page of results in ListBiddersRequest.pageToken.
Corresponds to the JSON property nextPageToken
1271 1272 1273 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1271 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1278 1279 1280 1281 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1278 def update!(**args) @bidders = args[:bidders] if args.key?(:bidders) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |