Package com.openai.models
Class VectorStore.FileCounts.Builder
-
- All Implemented Interfaces:
public final class VectorStore.FileCounts.Builder
A builder for FileCounts.
-
-
Method Summary
Modifier and Type Method Description final VectorStore.FileCounts.Builder
cancelled(Long cancelled)
The number of files that were cancelled. final VectorStore.FileCounts.Builder
cancelled(JsonField<Long> cancelled)
The number of files that were cancelled. final VectorStore.FileCounts.Builder
completed(Long completed)
The number of files that have been successfully processed. final VectorStore.FileCounts.Builder
completed(JsonField<Long> completed)
The number of files that have been successfully processed. final VectorStore.FileCounts.Builder
failed(Long failed)
The number of files that have failed to process. final VectorStore.FileCounts.Builder
failed(JsonField<Long> failed)
The number of files that have failed to process. final VectorStore.FileCounts.Builder
inProgress(Long inProgress)
The number of files that are currently being processed. final VectorStore.FileCounts.Builder
inProgress(JsonField<Long> inProgress)
The number of files that are currently being processed. final VectorStore.FileCounts.Builder
total(Long total)
The total number of files. final VectorStore.FileCounts.Builder
total(JsonField<Long> total)
The total number of files. final VectorStore.FileCounts.Builder
additionalProperties(Map<String, JsonValue> additionalProperties)
final VectorStore.FileCounts.Builder
putAdditionalProperty(String key, JsonValue value)
final VectorStore.FileCounts.Builder
putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
final VectorStore.FileCounts.Builder
removeAdditionalProperty(String key)
final VectorStore.FileCounts.Builder
removeAllAdditionalProperties(Set<String> keys)
final VectorStore.FileCounts
build()
-
-
Method Detail
-
cancelled
final VectorStore.FileCounts.Builder cancelled(Long cancelled)
The number of files that were cancelled.
-
cancelled
final VectorStore.FileCounts.Builder cancelled(JsonField<Long> cancelled)
The number of files that were cancelled.
-
completed
final VectorStore.FileCounts.Builder completed(Long completed)
The number of files that have been successfully processed.
-
completed
final VectorStore.FileCounts.Builder completed(JsonField<Long> completed)
The number of files that have been successfully processed.
-
failed
final VectorStore.FileCounts.Builder failed(Long failed)
The number of files that have failed to process.
-
failed
final VectorStore.FileCounts.Builder failed(JsonField<Long> failed)
The number of files that have failed to process.
-
inProgress
final VectorStore.FileCounts.Builder inProgress(Long inProgress)
The number of files that are currently being processed.
-
inProgress
final VectorStore.FileCounts.Builder inProgress(JsonField<Long> inProgress)
The number of files that are currently being processed.
-
total
final VectorStore.FileCounts.Builder total(Long total)
The total number of files.
-
total
final VectorStore.FileCounts.Builder total(JsonField<Long> total)
The total number of files.
-
additionalProperties
final VectorStore.FileCounts.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VectorStore.FileCounts.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VectorStore.FileCounts.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VectorStore.FileCounts.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VectorStore.FileCounts.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VectorStore.FileCounts build()
-
-
-
-