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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
use serde::{Deserialize, Serialize};
use crate::ids::InvoiceLineItemId;
use crate::params::{Expandable, Metadata, Object};
use crate::resources::{Currency, Discount, Period, Price, TaxRate};
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct InvoiceLineItem {
pub id: InvoiceLineItemId,
pub amount: i64,
pub currency: Currency,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub discount_amounts: Option<Vec<DiscountsResourceDiscountAmount>>,
pub discountable: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub discounts: Option<Vec<Expandable<Discount>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub invoice_item: Option<String>,
pub livemode: bool,
pub metadata: Metadata,
pub period: Option<Period>,
#[serde(skip_serializing_if = "Option::is_none")]
pub price: Option<Price>,
pub proration: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub proration_details: Option<InvoicesLineItemsProrationDetails>,
#[serde(skip_serializing_if = "Option::is_none")]
pub quantity: Option<u64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub subscription: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub subscription_item: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tax_amounts: Option<Vec<TaxAmount>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tax_rates: Option<Vec<TaxRate>>,
#[serde(rename = "type")]
pub type_: InvoiceLineItemType,
}
impl Object for InvoiceLineItem {
type Id = InvoiceLineItemId;
fn id(&self) -> Self::Id {
self.id.clone()
}
fn object(&self) -> &'static str {
"line_item"
}
}
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct DiscountsResourceDiscountAmount {
pub amount: i64,
pub discount: Expandable<Discount>,
}
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct TaxAmount {
pub amount: i64,
pub inclusive: bool,
pub tax_rate: Expandable<TaxRate>,
}
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct InvoicesLineItemsProrationDetails {
#[serde(skip_serializing_if = "Option::is_none")]
pub credited_items: Option<InvoicesLineItemsCreditedItems>,
}
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct InvoicesLineItemsCreditedItems {
pub invoice: String,
pub invoice_line_items: Vec<String>,
}
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum InvoiceLineItemType {
#[serde(rename = "invoiceitem")]
InvoiceItem,
Subscription,
}
impl InvoiceLineItemType {
pub fn as_str(self) -> &'static str {
match self {
InvoiceLineItemType::InvoiceItem => "invoiceitem",
InvoiceLineItemType::Subscription => "subscription",
}
}
}
impl AsRef<str> for InvoiceLineItemType {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl std::fmt::Display for InvoiceLineItemType {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
self.as_str().fmt(f)
}
}
impl std::default::Default for InvoiceLineItemType {
fn default() -> Self {
Self::InvoiceItem
}
}