Class MemoryStoreListPageResponse.Builder
-
- All Implemented Interfaces:
public final class MemoryStoreListPageResponse.BuilderA builder for MemoryStoreListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final MemoryStoreListPageResponse.Builder data(List<BetaManagedAgentsMemoryStore> data)
Memory stores on this page, newest first. Empty when there are no stores matching the filters.
-
data
final MemoryStoreListPageResponse.Builder data(JsonField<List<BetaManagedAgentsMemoryStore>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<BetaManagedAgentsMemoryStore>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final MemoryStoreListPageResponse.Builder addData(BetaManagedAgentsMemoryStore data)
Adds a single BetaManagedAgentsMemoryStore to Builder.data.
-
nextPage
final MemoryStoreListPageResponse.Builder nextPage(String nextPage)
Opaque cursor for the next page (a
page_...value). Pass aspageon the next request.nullwhen there are no more results.
-
nextPage
final MemoryStoreListPageResponse.Builder nextPage(Optional<String> nextPage)
Alias for calling Builder.nextPage with
nextPage.orElse(null).
-
nextPage
final MemoryStoreListPageResponse.Builder nextPage(JsonField<String> nextPage)
Sets Builder.nextPage to an arbitrary JSON value.
You should usually call Builder.nextPage with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final MemoryStoreListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final MemoryStoreListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final MemoryStoreListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final MemoryStoreListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final MemoryStoreListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final MemoryStoreListPageResponse build()
Returns an immutable instance of MemoryStoreListPageResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-