use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct PaymentMethodOptionsUsBankAccountMandateOptions {
#[serde(skip_serializing_if = "Option::is_none")]
pub collection_method: Option<PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod>,
}
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Eq, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod {
Paper,
}
impl PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod {
pub fn as_str(self) -> &'static str {
match self {
PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod::Paper => "paper",
}
}
}
impl AsRef<str> for PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl std::fmt::Display for PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
self.as_str().fmt(f)
}
}
impl std::default::Default for PaymentMethodOptionsUsBankAccountMandateOptionsCollectionMethod {
fn default() -> Self {
Self::Paper
}
}