Class VectorStoreListPageResponse.Builder
-
- All Implemented Interfaces:
public final class VectorStoreListPageResponse.BuilderA builder for VectorStoreListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final VectorStoreListPageResponse.Builder data(List<VectorStore> data)
-
data
final VectorStoreListPageResponse.Builder data(JsonField<List<VectorStore>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<VectorStore>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final VectorStoreListPageResponse.Builder addData(VectorStore data)
Adds a single VectorStore to Builder.data.
-
firstId
final VectorStoreListPageResponse.Builder firstId(String firstId)
-
firstId
final VectorStoreListPageResponse.Builder firstId(JsonField<String> firstId)
Sets Builder.firstId to an arbitrary JSON value.
You should usually call Builder.firstId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
hasMore
final VectorStoreListPageResponse.Builder hasMore(Boolean hasMore)
-
hasMore
final VectorStoreListPageResponse.Builder hasMore(JsonField<Boolean> hasMore)
Sets Builder.hasMore to an arbitrary JSON value.
You should usually call Builder.hasMore with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
lastId
final VectorStoreListPageResponse.Builder lastId(String lastId)
-
lastId
final VectorStoreListPageResponse.Builder lastId(JsonField<String> lastId)
Sets Builder.lastId to an arbitrary JSON value.
You should usually call Builder.lastId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
object_
final VectorStoreListPageResponse.Builder object_(String object_)
-
object_
final VectorStoreListPageResponse.Builder object_(JsonField<String> object_)
Sets Builder.object_ to an arbitrary JSON value.
You should usually call Builder.object_ 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 VectorStoreListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VectorStoreListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VectorStoreListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VectorStoreListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VectorStoreListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VectorStoreListPageResponse build()
Returns an immutable instance of VectorStoreListPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.data() .firstId() .hasMore() .lastId() .object_()
-
-
-
-