zernio 0.0.430

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 CallRecordBilling {
    #[serde(rename = "metaMinutes", skip_serializing_if = "Option::is_none")]
    pub meta_minutes: Option<f64>,
    #[serde(rename = "telnyxSeconds", skip_serializing_if = "Option::is_none")]
    pub telnyx_seconds: Option<f64>,
    #[serde(
        rename = "transcriptionSeconds",
        skip_serializing_if = "Option::is_none"
    )]
    pub transcription_seconds: Option<f64>,
    #[serde(
        rename = "transcriptionCostUSD",
        skip_serializing_if = "Option::is_none"
    )]
    pub transcription_cost_usd: Option<f64>,
    /// WhatsApp channel only. 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>,
    /// Amount Zernio bills you = telephony leg + recording + transcription (excludes any Meta portion).
    #[serde(rename = "billableCostUSD", skip_serializing_if = "Option::is_none")]
    pub billable_cost_usd: Option<f64>,
    /// Full cost incl. any Meta portion you pay directly. Display only.
    #[serde(rename = "totalCostUSD", skip_serializing_if = "Option::is_none")]
    pub total_cost_usd: Option<f64>,
    #[serde(rename = "currency", skip_serializing_if = "Option::is_none")]
    pub currency: Option<String>,
}

impl CallRecordBilling {
    pub fn new() -> CallRecordBilling {
        CallRecordBilling {
            meta_minutes: None,
            telnyx_seconds: None,
            transcription_seconds: None,
            transcription_cost_usd: None,
            meta_cost_usd: None,
            telnyx_cost_usd: None,
            recording_cost_usd: None,
            billable_cost_usd: None,
            total_cost_usd: None,
            currency: None,
        }
    }
}