VectorStoreFileCounts class
File counts by status in a vector store.
- Annotations
-
- @immutable
Constructors
- VectorStoreFileCounts({required int inProgress, required int completed, required int failed, required int cancelled, required int total})
-
Creates a VectorStoreFileCounts.
const
-
VectorStoreFileCounts.fromJson(Map<
String, dynamic> json) -
Creates a VectorStoreFileCounts from JSON.
factory
Properties
- cancelled → int
-
Cancelled files.
final
- completed → int
-
Completed files.
final
- failed → int
-
Failed files.
final
- hashCode → int
-
The hash code for this object.
no setteroverride
- inProgress → int
-
Files in progress.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- total → int
-
Total files.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Converts to JSON.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override