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
38
39
40
41
42
43
44
/*
* 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};
/// UsageStatsSpend : Metronome users only. Current-period spend summary.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UsageStatsSpend {
/// Total current-period spend in cents (all products combined).
#[serde(rename = "currentPeriodCents", skip_serializing_if = "Option::is_none")]
pub current_period_cents: Option<i32>,
/// Free-tier credit remaining in cents. Applied before any charge.
#[serde(
rename = "creditsRemainingCents",
skip_serializing_if = "Option::is_none"
)]
pub credits_remaining_cents: Option<i32>,
/// Current-period X/Twitter API spend in cents, summed from `xApiCallsByOperation` × per-operation prices. Tier-agnostic (covers every price including the $0.200 URL tier). Rounded up for conservative enforcement against `xSpendLimitCents`.
#[serde(rename = "xSpendCents", skip_serializing_if = "Option::is_none")]
pub x_spend_cents: Option<i32>,
/// Monthly X spend cap set by the account owner, or null if no cap. When current X spend hits this cap, analytics and inbox sync are auto-paused for X accounts. Publishing is never blocked by this cap.
#[serde(rename = "xSpendLimitCents", skip_serializing_if = "Option::is_none")]
pub x_spend_limit_cents: Option<i32>,
}
impl UsageStatsSpend {
/// Metronome users only. Current-period spend summary.
pub fn new() -> UsageStatsSpend {
UsageStatsSpend {
current_period_cents: None,
credits_remaining_cents: None,
x_spend_cents: None,
x_spend_limit_cents: None,
}
}
}