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.
74 75 76 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 74 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
65 66 67 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 65 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
72 73 74 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 72 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
79 80 81 82 |
# File 'lib/google/apis/realtimebidding_v1alpha/classes.rb', line 79 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 |