late 0.0.297

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 GetWhatsAppCallEstimate200ResponseBreakdown {
    #[serde(rename = "metaMinutes", skip_serializing_if = "Option::is_none")]
    pub meta_minutes: Option<i32>,
    /// Estimated Meta per-minute charge, billed by Meta directly to your WABA. Display only; not billed by Zernio.
    #[serde(rename = "metaCostUSD", skip_serializing_if = "Option::is_none")]
    pub meta_cost_usd: Option<f64>,
    #[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>,
    /// Estimated amount Zernio bills you = Telnyx leg + recording (excludes Meta).
    #[serde(rename = "billableCostUSD", skip_serializing_if = "Option::is_none")]
    pub billable_cost_usd: Option<f64>,
    /// Estimated full cost incl. the Meta portion you pay directly. Display only.
    #[serde(rename = "totalCostUSD", skip_serializing_if = "Option::is_none")]
    pub total_cost_usd: Option<f64>,
}

impl GetWhatsAppCallEstimate200ResponseBreakdown {
    pub fn new() -> GetWhatsAppCallEstimate200ResponseBreakdown {
        GetWhatsAppCallEstimate200ResponseBreakdown {
            meta_minutes: None,
            meta_cost_usd: None,
            telnyx_cost_usd: None,
            recording_cost_usd: None,
            billable_cost_usd: None,
            total_cost_usd: None,
        }
    }
}