stripe/model/
source_mandate_notification_acss_debit_data.rs

1use serde::{Serialize, Deserialize};
2///
3#[derive(Debug, Clone, Serialize, Deserialize, Default)]
4pub struct SourceMandateNotificationAcssDebitData {
5    ///The statement descriptor associate with the debit.
6    #[serde(skip_serializing_if = "Option::is_none")]
7    pub statement_descriptor: Option<String>,
8}
9impl std::fmt::Display for SourceMandateNotificationAcssDebitData {
10    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
11        write!(f, "{}", serde_json::to_string(self).unwrap())
12    }
13}