openai-client-base 0.12.0

Auto-generated Rust client for the OpenAI API
/*
 * OpenAI API
 *
 * The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
 *
 * The version of the OpenAPI document: 2.3.0
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct VectorStoreObjectFileCounts {
    /// The number of files that are currently being processed.
    #[serde(rename = "in_progress")]
    pub in_progress: i32,
    /// The number of files that have been successfully processed.
    #[serde(rename = "completed")]
    pub completed: i32,
    /// The number of files that have failed to process.
    #[serde(rename = "failed")]
    pub failed: i32,
    /// The number of files that were cancelled.
    #[serde(rename = "cancelled")]
    pub cancelled: i32,
    /// The total number of files.
    #[serde(rename = "total")]
    pub total: i32,
}

impl VectorStoreObjectFileCounts {
    pub fn new(
        in_progress: i32,
        completed: i32,
        failed: i32,
        cancelled: i32,
        total: i32,
    ) -> VectorStoreObjectFileCounts {
        VectorStoreObjectFileCounts {
            in_progress,
            completed,
            failed,
            cancelled,
            total,
        }
    }
}

impl std::fmt::Display for VectorStoreObjectFileCounts {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match serde_json::to_string(self) {
            Ok(s) => write!(f, "{}", s),
            Err(_) => Err(std::fmt::Error),
        }
    }
}