// ======================================
// This file was automatically generated.
// ======================================
use crate::params::Object;
use crate::resources::Currency;
use serde_derive::{Deserialize, Serialize};
/// The resource representing a Stripe "ReserveTransaction".
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ReserveTransaction {
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.
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
}
impl Object for ReserveTransaction {
type Id = ();
fn id(&self) -> Self::Id {}
fn object(&self) -> &'static str {
"reserve_transaction"
}
}