class Google::Apis::AuthorizedbuyersmarketplaceV1::ListAuctionPackagesResponse

Response message for listing auction packages.

Attributes

auction_packages[RW]

The list of auction packages. Corresponds to the JSON property ‘auctionPackages` @return [Array<Google::Apis::AuthorizedbuyersmarketplaceV1::AuctionPackage>]

next_page_token[RW]

Continuation token for fetching the next page of results. Pass this value in the ListAuctionPackagesRequest.pageToken field in the subsequent call to the ‘ ListAuctionPackages` method to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 966
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 971
def update!(**args)
  @auction_packages = args[:auction_packages] if args.key?(:auction_packages)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end