zernio 0.0.427

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 GetCallsUsage200ResponseGroupsInner {
    /// The group key: a `YYYY-MM-DD` UTC day, one of your numbers, or a channel.
    #[serde(rename = "key", skip_serializing_if = "Option::is_none")]
    pub key: Option<String>,
    #[serde(rename = "calls", skip_serializing_if = "Option::is_none")]
    pub calls: Option<i32>,
    #[serde(rename = "answered", skip_serializing_if = "Option::is_none")]
    pub answered: Option<i32>,
    #[serde(rename = "minutes", skip_serializing_if = "Option::is_none")]
    pub minutes: Option<f64>,
    #[serde(rename = "billableUSD", skip_serializing_if = "Option::is_none")]
    pub billable_usd: Option<f64>,
    #[serde(rename = "metaUSD", skip_serializing_if = "Option::is_none")]
    pub meta_usd: Option<f64>,
}

impl GetCallsUsage200ResponseGroupsInner {
    pub fn new() -> GetCallsUsage200ResponseGroupsInner {
        GetCallsUsage200ResponseGroupsInner {
            key: None,
            calls: None,
            answered: None,
            minutes: None,
            billable_usd: None,
            meta_usd: None,
        }
    }
}