pub struct CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions {
pub custom_mandate_url: Option<String>,
pub default_for: Option<Vec<CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsDefaultFor>>,
pub interval_description: Option<String>,
pub payment_schedule: Option<CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsPaymentSchedule>,
pub transaction_type: Option<CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsTransactionType>,
}
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<CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsDefaultFor>>
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<CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsPaymentSchedule>
Payment schedule for the mandate.
transaction_type: Option<CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptionsTransactionType>
Transaction type of the mandate.
Implementations§
Trait Implementations§
Source§impl Clone for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Clone for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
Source§fn clone(&self) -> CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
fn clone(&self) -> CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
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 CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl RefUnwindSafe for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Send for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Sync for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Unpin for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
impl UnwindSafe for CreateSetupIntentPaymentMethodOptionsAcssDebitMandateOptions
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