pub struct CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions {
pub reference_prefix: Option<String>,
}
Expand description
Additional fields for Mandate creation
Fields§
§reference_prefix: Option<String>
Prefix used to generate the Mandate reference. Must be at most 12 characters long. Must consist of only uppercase letters, numbers, spaces, or the following special characters: ‘/’, ‘_’, ‘-’, ‘&’, ‘.’. Cannot begin with ‘STRIPE’.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
impl Clone for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
Source§fn clone(
&self,
) -> CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
fn clone( &self, ) -> CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
impl RefUnwindSafe for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
impl Send for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
impl Sync for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
impl Unpin for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
impl UnwindSafe for CreatePaymentIntentPaymentMethodOptionsSepaDebitMandateOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more