zernio 0.0.432

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
Documentation
/*
 * Zernio API
 *
 * API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
 *
 * The version of the OpenAPI document: 1.0.4
 * Contact: support@zernio.com
 * Generated by: https://openapi-generator.tech
 */

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetVoiceCallEstimate200ResponseBreakdown {
    #[serde(rename = "telnyxCostUSD", skip_serializing_if = "Option::is_none")]
    pub telnyx_cost_usd: Option<f64>,
    #[serde(rename = "recordingCostUSD", skip_serializing_if = "Option::is_none")]
    pub recording_cost_usd: Option<f64>,
    #[serde(
        rename = "transcriptionCostUSD",
        skip_serializing_if = "Option::is_none"
    )]
    pub transcription_cost_usd: Option<f64>,
    /// What Zernio bills for the call.
    #[serde(rename = "billableCostUSD", skip_serializing_if = "Option::is_none")]
    pub billable_cost_usd: Option<f64>,
    /// Equals billableCostUSD (no separate Meta bill on PSTN); kept for shape parity with the WhatsApp estimate.
    #[serde(rename = "totalCostUSD", skip_serializing_if = "Option::is_none")]
    pub total_cost_usd: Option<f64>,
}

impl GetVoiceCallEstimate200ResponseBreakdown {
    pub fn new() -> GetVoiceCallEstimate200ResponseBreakdown {
        GetVoiceCallEstimate200ResponseBreakdown {
            telnyx_cost_usd: None,
            recording_cost_usd: None,
            transcription_cost_usd: None,
            billable_cost_usd: None,
            total_cost_usd: None,
        }
    }
}