// ======================================
// This file was automatically generated.
// ======================================
use serde_derive::{Deserialize, Serialize};
/// The resource representing a Stripe "payment_method_options_boleto".
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct PaymentMethodOptionsBoleto {
/// The number of calendar days before a Boleto voucher expires.
///
/// For example, if you create a Boleto voucher on Monday and you set expires_after_days to 2, the Boleto voucher will expire on Wednesday at 23:59 America/Sao_Paulo time.
pub expires_after_days: u32,
}