Class VectorStoreFileDeleted.Builder
-
- All Implemented Interfaces:
public final class VectorStoreFileDeleted.Builder
A builder for VectorStoreFileDeleted.
-
-
Method Summary
-
-
Method Detail
-
id
final VectorStoreFileDeleted.Builder id(String id)
-
id
final VectorStoreFileDeleted.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
deleted
final VectorStoreFileDeleted.Builder deleted(Boolean deleted)
-
deleted
final VectorStoreFileDeleted.Builder deleted(JsonField<Boolean> deleted)
Sets Builder.deleted to an arbitrary JSON value.
You should usually call Builder.deleted with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
object_
final VectorStoreFileDeleted.Builder object_(JsonValue object_)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("vector_store.file.deleted")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final VectorStoreFileDeleted.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VectorStoreFileDeleted.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VectorStoreFileDeleted.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VectorStoreFileDeleted.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VectorStoreFileDeleted.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VectorStoreFileDeleted build()
Returns an immutable instance of VectorStoreFileDeleted.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .deleted()
-
-
-
-