Class GetQueriesResponsePagination
- java.lang.Object
-
- software.amazon.spapi.models.datakiosk.v2023_11_15.GetQueriesResponsePagination
-
public class GetQueriesResponsePagination extends java.lang.Object
When a request has results that are not included in this response, pagination occurs. This means the results are divided into pages. To retrieve the next page, you must pass the `nextToken` as the `paginationToken` query parameter in the subsequent `getQueries` request. All other parameters must be provided with the same values that were provided with the request that generated this token, with the exception of `pageSize` which can be modified between calls to `getQueries`. When there are no more pages to fetch, the `nextToken` field will be absent.
-
-
Constructor Summary
Constructors Constructor Description GetQueriesResponsePagination()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getNextToken()
A token that can be used to fetch the next page of results.int
hashCode()
GetQueriesResponsePagination
nextToken(java.lang.String nextToken)
void
setNextToken(java.lang.String nextToken)
java.lang.String
toString()
-
-
-
Method Detail
-
nextToken
public GetQueriesResponsePagination nextToken(java.lang.String nextToken)
-
getNextToken
public java.lang.String getNextToken()
A token that can be used to fetch the next page of results.- Returns:
- nextToken
-
setNextToken
public void setNextToken(java.lang.String nextToken)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-