pub struct UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions {
pub custom_mandate_url: Option<String>,
pub default_for: Option<Vec<UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsDefaultFor>>,
pub interval_description: Option<String>,
pub payment_schedule: Option<UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsPaymentSchedule>,
pub transaction_type: Option<UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsTransactionType>,
}
Expand description
Additional fields for Mandate creation
Fields§
§custom_mandate_url: Option<String>
A URL for custom mandate text to render during confirmation step.
The URL will be rendered with additional GET parameters payment_intent
and payment_intent_client_secret
when confirming a Payment Intent,.
or setup_intent
and setup_intent_client_secret
when confirming a Setup Intent.
default_for: Option<Vec<UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsDefaultFor>>
List of Stripe products where this mandate can be selected automatically.
interval_description: Option<String>
Description of the mandate interval. Only required if ‘payment_schedule’ parameter is ‘interval’ or ‘combined’.
payment_schedule: Option<UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsPaymentSchedule>
Payment schedule for the mandate.
transaction_type: Option<UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsTransactionType>
Transaction type of the mandate.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Clone for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
Source§fn clone(&self) -> UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
fn clone(&self) -> UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
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 UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl RefUnwindSafe for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Send for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Sync for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Unpin for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl UnwindSafe for UpdateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
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