late 0.0.297

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 XApiPricingTiersInner {
    /// Tier key derived from price (e.g. `x_api_005` for $0.005, `x_api_200` for $0.200). The first three keys map to the legacy `xApiCalls` aggregate; new tiers (e.g. `x_api_200` for the URL tier added April 2026) are surfaced here but not in the legacy shape.
    #[serde(rename = "tier", skip_serializing_if = "Option::is_none")]
    pub tier: Option<String>,
    #[serde(rename = "pricePerCallUsd", skip_serializing_if = "Option::is_none")]
    pub price_per_call_usd: Option<f64>,
    #[serde(rename = "operationCount", skip_serializing_if = "Option::is_none")]
    pub operation_count: Option<i32>,
}

impl XApiPricingTiersInner {
    pub fn new() -> XApiPricingTiersInner {
        XApiPricingTiersInner {
            tier: None,
            price_per_call_usd: None,
            operation_count: None,
        }
    }
}