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
// ======================================
// This file was automatically generated.
// ======================================
use crate::ids::ReserveTransactionId;
use crate::params::Object;
use crate::resources::Currency;
use serde::{Deserialize, Serialize};
/// The resource representing a Stripe "ReserveTransaction".
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct ReserveTransaction {
/// Unique identifier for the object.
pub id: ReserveTransactionId,
pub amount: i64,
/// Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase.
///
/// Must be a [supported currency](https://stripe.com/docs/currencies).
pub currency: Currency,
/// An arbitrary string attached to the object.
///
/// Often useful for displaying to users.
pub description: Option<String>,
}
impl Object for ReserveTransaction {
type Id = ReserveTransactionId;
fn id(&self) -> Self::Id {
self.id.clone()
}
fn object(&self) -> &'static str {
"reserve_transaction"
}
}