class Google::Apis::RealtimebiddingV1alpha::ListBiddingFunctionsResponse
A response containing a list of a bidder's bidding functions.
Attributes
bidding_functions[RW]
A list of a bidder's bidding functions. Corresponds to the JSON property `biddingFunctions` @return [Array<Google::Apis::RealtimebiddingV1alpha::BiddingFunction>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/realtimebidding_v1alpha/classes.rb, line 106 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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