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
// ======================================
// This file was automatically generated.
// ======================================
use serde_derive::{Deserialize, Serialize};
use crate::ids::UsageRecordId;
use crate::params::{Object, Timestamp};
/// The resource representing a Stripe "UsageRecord".
///
/// For more details see <https://stripe.com/docs/api/usage_records/object>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct UsageRecord {
/// Unique identifier for the object.
pub id: UsageRecordId,
/// Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
pub livemode: bool,
/// The usage quantity for the specified date.
pub quantity: u64,
/// The ID of the subscription item this usage record contains data for.
pub subscription_item: String,
/// The timestamp when this usage occurred.
pub timestamp: Timestamp,
}
impl Object for UsageRecord {
type Id = UsageRecordId;
fn id(&self) -> Self::Id {
self.id.clone()
}
fn object(&self) -> &'static str {
"usage_record"
}
}