VectorStoreList class

A list of vector stores.

Annotations
  • @immutable

Constructors

VectorStoreList({required String object, required List<VectorStore> data, String? firstId, String? lastId, required bool hasMore})
Creates a VectorStoreList.
const
VectorStoreList.fromJson(Map<String, dynamic> json)
Creates a VectorStoreList from JSON.
factory

Properties

data List<VectorStore>
The list of vector stores.
final
firstId String?
The ID of the first vector store.
final
hashCode int
The hash code for this object.
no setteroverride
hasMore bool
Whether there are more vector stores.
final
lastId String?
The ID of the last vector store.
final
object String
The object type (always "list").
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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