1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* 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};
/// UsageStatsUsageXApiCalls : **Deprecated.** Legacy 3-tier aggregate. Operations outside the three historical prices ($0.005/$0.010/$0.015) — notably the $0.200 \"Posts with URL\" tier added April 2026 — are silently excluded from this shape. Use `xApiCallsByOperation` instead; it captures every tier and is the source of truth for per-operation call counts.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UsageStatsUsageXApiCalls {
/// Calls at $0.005 per call (reads, lists, bookmarks, content manage, etc.)
#[serde(rename = "x_api_005", skip_serializing_if = "Option::is_none")]
pub x_api_005: Option<i32>,
/// Calls at $0.010 per call (user reads, DM reads, follow reads, trends, list create, privacy update)
#[serde(rename = "x_api_010", skip_serializing_if = "Option::is_none")]
pub x_api_010: Option<i32>,
/// Calls at $0.015 per call (posts/replies, DM sends, user interactions)
#[serde(rename = "x_api_015", skip_serializing_if = "Option::is_none")]
pub x_api_015: Option<i32>,
}
impl UsageStatsUsageXApiCalls {
/// **Deprecated.** Legacy 3-tier aggregate. Operations outside the three historical prices ($0.005/$0.010/$0.015) — notably the $0.200 \"Posts with URL\" tier added April 2026 — are silently excluded from this shape. Use `xApiCallsByOperation` instead; it captures every tier and is the source of truth for per-operation call counts.
pub fn new() -> UsageStatsUsageXApiCalls {
UsageStatsUsageXApiCalls {
x_api_005: None,
x_api_010: None,
x_api_015: None,
}
}
}