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};

/// CreateSpendAlertBody : Parameters for creating or updating a spend alert.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct CreateSpendAlertBody {
    /// 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 CreateSpendAlertBody {
    /// Parameters for creating or updating a spend alert.
    pub fn new(
        threshold_amount: i32,
        currency: Currency,
        interval: Interval,
        notification_channel: models::SpendAlertNotificationChannel,
    ) -> CreateSpendAlertBody {
        CreateSpendAlertBody {
            threshold_amount,
            currency,
            interval,
            notification_channel: Box::new(notification_channel),
        }
    }
}
/// 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 CreateSpendAlertBody {
    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),
        }
    }
}