zernio 0.0.454

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};

/// BillingSnapshotPeriod : Current billing cycle. `start`/`end` are resolved for usage-based accounts only.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BillingSnapshotPeriod {
    #[serde(rename = "start", skip_serializing_if = "Option::is_none")]
    pub start: Option<String>,
    #[serde(rename = "end", skip_serializing_if = "Option::is_none")]
    pub end: Option<String>,
    /// Day-of-month the cycle resets.
    #[serde(rename = "anchorDay", skip_serializing_if = "Option::is_none")]
    pub anchor_day: Option<i32>,
}

impl BillingSnapshotPeriod {
    /// Current billing cycle. `start`/`end` are resolved for usage-based accounts only.
    pub fn new() -> BillingSnapshotPeriod {
        BillingSnapshotPeriod {
            start: None,
            end: None,
            anchor_day: None,
        }
    }
}