userocket::serde::Deserialize;/// Represents customer details from Stripe.
#[derive(Debug, Deserialize)]#[serde(crate ="rocket::serde")]pubstructStripeCustomerDetails{/// The customer's email address.
/// This is used for sending receipts and communications.
pubemail: String,
/// The customer's full name.
/// Used for personalization in transactional emails.
pubname: String,
}