Class: Google::Apis::RealtimebiddingV1alpha::ListBiddingFunctionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1alpha::ListBiddingFunctionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/realtimebidding_v1alpha/classes.rb,
lib/google/apis/realtimebidding_v1alpha/representations.rb,
lib/google/apis/realtimebidding_v1alpha/representations.rb
Overview
A response containing a list of a bidder's bidding functions.
Instance Attribute Summary collapse
-
#bidding_functions ⇒ Array<Google::Apis::RealtimebiddingV1alpha::BiddingFunction>
A list of a bidder's bidding functions.
-
#next_page_token ⇒ String
A token which can be passed to a subsequent call to the
ListBiddingFunctionsmethod to retrieve the next page of results in ListBiddingFunctionsRequest.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBiddingFunctionsResponse
constructor
A new instance of ListBiddingFunctionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBiddingFunctionsResponse
Returns a new instance of ListBiddingFunctionsResponse.
106 107 108 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 106 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bidding_functions ⇒ Array<Google::Apis::RealtimebiddingV1alpha::BiddingFunction>
A list of a bidder's bidding functions.
Corresponds to the JSON property biddingFunctions
97 98 99 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 97 def bidding_functions @bidding_functions end |
#next_page_token ⇒ String
A token which can be passed to a subsequent call to the ListBiddingFunctions
method to retrieve the next page of results in ListBiddingFunctionsRequest.
pageToken.
Corresponds to the JSON property nextPageToken
104 105 106 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 104 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
111 112 113 114 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 111 def update!(**args) @bidding_functions = args[:bidding_functions] if args.key?(:bidding_functions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |