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>,
#[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>,
#[serde(rename = "billableCostUSD", skip_serializing_if = "Option::is_none")]
pub billable_cost_usd: Option<f64>,
#[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,
}
}
}