ListAuctionPackagesResponse
Response message for listing auction packages.
JSON representation |
{
"auctionPackages": [
{
object (AuctionPackage )
}
],
"nextPageToken": string
} |
Fields |
auctionPackages[] |
object (AuctionPackage )
The list of auction packages.
|
nextPageToken |
string
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.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-06 UTC.
[null,null,["Last updated 2025-01-06 UTC."],[[["This response provides a list of auction packages in JSON format, including details like package information and a token for navigating to the next page of results if available."],["The response includes an array of `auctionPackages` objects and a `nextPageToken` for pagination."]]],["The JSON response for listing auction packages includes an array of `auctionPackages`, each represented as an object. Additionally, it may contain a `nextPageToken`, a string used to retrieve subsequent pages of results. This token should be passed in the `ListAuctionPackagesRequest.pageToken` field during the next `ListAuctionPackages` call to get more data. The `auctionPackages` array is a list of `AuctionPackage` objects.\n"]]