openai_struct/models/
vector_store_object_file_counts.rs

1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https://github.com/swagger-api/swagger-codegen.git
9 */
10
11#[allow(unused_imports)]
12use serde_json::Value;
13
14#[derive(Debug, Serialize, Deserialize)]
15pub struct VectorStoreObjectFileCounts {
16    /// The number of files that were cancelled.
17    #[serde(rename = "cancelled")]
18    pub cancelled: i32,
19    /// The number of files that have been successfully processed.
20    #[serde(rename = "completed")]
21    pub completed: i32,
22    /// The number of files that have failed to process.
23    #[serde(rename = "failed")]
24    pub failed: i32,
25    /// The number of files that are currently being processed.
26    #[serde(rename = "in_progress")]
27    pub in_progress: i32,
28    /// The total number of files.
29    #[serde(rename = "total")]
30    pub total: i32,
31}