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, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct ProjectServiceAccountApiKey {
    /// The object type, which is always `organization.project.service_account.api_key`
    #[serde(rename = "object")]
    pub object: Object,
    #[serde(rename = "value")]
    pub value: String,
    #[serde(rename = "name")]
    pub name: String,
    #[serde(rename = "created_at")]
    pub created_at: i32,
    #[serde(rename = "id")]
    pub id: String,
}

impl ProjectServiceAccountApiKey {
    pub fn new(
        object: Object,
        value: String,
        name: String,
        created_at: i32,
        id: String,
    ) -> ProjectServiceAccountApiKey {
        ProjectServiceAccountApiKey {
            object,
            value,
            name,
            created_at,
            id,
        }
    }
}
/// The object type, which is always `organization.project.service_account.api_key`
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Object {
    #[serde(rename = "organization.project.service_account.api_key")]
    OrganizationProjectServiceAccountApiKey,
}

impl Default for Object {
    fn default() -> Object {
        Self::OrganizationProjectServiceAccountApiKey
    }
}

impl std::fmt::Display for ProjectServiceAccountApiKey {
    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),
        }
    }
}