/*
* 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};
/// BillingSnapshotLegacy : Deprecated plan entitlements (Stripe only); absent for usage-based accounts.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BillingSnapshotLegacy {
#[serde(rename = "limits", skip_serializing_if = "Option::is_none")]
pub limits: Option<Box<models::BillingSnapshotLegacyLimits>>,
}
impl BillingSnapshotLegacy {
/// Deprecated plan entitlements (Stripe only); absent for usage-based accounts.
pub fn new() -> BillingSnapshotLegacy {
BillingSnapshotLegacy { limits: None }
}
}