openai-client-base 0.13.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};

/// OrganizationSpendAlert : Represents a spend alert configured at the organization level.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct OrganizationSpendAlert {
    /// The identifier, which can be referenced in API endpoints.
    #[serde(rename = "id")]
    pub id: String,
    /// The object type, which is always `organization.spend_alert`.
    #[serde(rename = "object")]
    pub object: Object,
    /// The alert threshold amount, in cents.
    #[serde(rename = "threshold_amount")]
    pub threshold_amount: i32,
    /// The currency for the threshold amount.
    #[serde(rename = "currency")]
    pub currency: Currency,
    /// The time interval for evaluating spend against the threshold.
    #[serde(rename = "interval")]
    pub interval: Interval,
    #[serde(rename = "notification_channel")]
    pub notification_channel: Box<models::SpendAlertNotificationChannel>,
}

impl OrganizationSpendAlert {
    /// Represents a spend alert configured at the organization level.
    pub fn new(
        id: String,
        object: Object,
        threshold_amount: i32,
        currency: Currency,
        interval: Interval,
        notification_channel: models::SpendAlertNotificationChannel,
    ) -> OrganizationSpendAlert {
        OrganizationSpendAlert {
            id,
            object,
            threshold_amount,
            currency,
            interval,
            notification_channel: Box::new(notification_channel),
        }
    }
}
/// The object type, which is always `organization.spend_alert`.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Object {
    #[serde(rename = "organization.spend_alert")]
    OrganizationSpendAlert,
}

impl Default for Object {
    fn default() -> Object {
        Self::OrganizationSpendAlert
    }
}
/// The currency for the threshold amount.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Currency {
    #[serde(rename = "USD")]
    Usd,
}

impl Default for Currency {
    fn default() -> Currency {
        Self::Usd
    }
}
/// The time interval for evaluating spend against the threshold.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Interval {
    #[serde(rename = "month")]
    Month,
}

impl Default for Interval {
    fn default() -> Interval {
        Self::Month
    }
}

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