Class MessageListPage
-
- All Implemented Interfaces:
-
com.openai.core.Page
public final class MessageListPage implements Page<ChatCompletionStoreMessage>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
MessageListPage.Builder
A builder for MessageListPage.
-
Method Summary
Modifier and Type Method Description final List<ChatCompletionStoreMessage>
data()
Delegates to MessageListPageResponse, but gracefully handles missing data. final Optional<Boolean>
hasMore()
Delegates to MessageListPageResponse, but gracefully handles missing data. List<ChatCompletionStoreMessage>
items()
Returns the items in this page. Boolean
hasNextPage()
Returns whether there's another page after this one. final MessageListParams
nextPageParams()
MessageListPage
nextPage()
Returns the page after this one by making another request. final AutoPager<ChatCompletionStoreMessage>
autoPager()
final MessageListParams
params()
The parameters that were used to request this page. final MessageListPageResponse
response()
The response that this page was parsed from. final MessageListPage.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static MessageListPage.Builder
builder()
Returns a mutable builder for constructing an instance of MessageListPage. -
-
Method Detail
-
data
final List<ChatCompletionStoreMessage> data()
Delegates to MessageListPageResponse, but gracefully handles missing data.
-
hasMore
final Optional<Boolean> hasMore()
Delegates to MessageListPageResponse, but gracefully handles missing data.
-
items
List<ChatCompletionStoreMessage> items()
Returns the items in this page.
-
hasNextPage
Boolean hasNextPage()
Returns whether there's another page after this one.
The method generally doesn't make requests so the result depends entirely on the data in this page. If a significant amount of time has passed between requesting this page and calling this method, then the result could be stale.
-
nextPageParams
final MessageListParams nextPageParams()
-
nextPage
MessageListPage nextPage()
Returns the page after this one by making another request.
-
autoPager
final AutoPager<ChatCompletionStoreMessage> autoPager()
-
params
final MessageListParams params()
The parameters that were used to request this page.
-
response
final MessageListPageResponse response()
The response that this page was parsed from.
-
toBuilder
final MessageListPage.Builder toBuilder()
-
builder
final static MessageListPage.Builder builder()
Returns a mutable builder for constructing an instance of MessageListPage.
The following fields are required:
.service() .params() .response()
-
-
-
-