pub struct VectorStoreFileBatchObject {
pub created_at: i32,
pub file_counts: VectorStoreFileBatchObjectFileCounts,
pub id: String,
pub object: String,
pub status: String,
pub vector_store_id: String,
}
Fields§
§created_at: i32
The Unix timestamp (in seconds) for when the vector store files batch was created.
file_counts: VectorStoreFileBatchObjectFileCounts
§id: String
The identifier, which can be referenced in API endpoints.
object: String
The object type, which is always vector_store.file_batch
.
status: String
The status of the vector store files batch, which can be either in_progress
, completed
, cancelled
or failed
.
vector_store_id: String
The ID of the vector store that the File is attached to.
Trait Implementations§
Source§impl Debug for VectorStoreFileBatchObject
impl Debug for VectorStoreFileBatchObject
Source§impl<'de> Deserialize<'de> for VectorStoreFileBatchObject
impl<'de> Deserialize<'de> for VectorStoreFileBatchObject
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VectorStoreFileBatchObject
impl RefUnwindSafe for VectorStoreFileBatchObject
impl Send for VectorStoreFileBatchObject
impl Sync for VectorStoreFileBatchObject
impl Unpin for VectorStoreFileBatchObject
impl UnwindSafe for VectorStoreFileBatchObject
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more