pub struct CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions {
pub custom_mandate_url: Option<String>,
pub interval_description: Option<String>,
pub payment_schedule: Option<CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptionsPaymentSchedule>,
pub transaction_type: Option<CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptionsTransactionType>,
}
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.
interval_description: Option<String>
Description of the mandate interval. Only required if ‘payment_schedule’ parameter is ‘interval’ or ‘combined’.
payment_schedule: Option<CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptionsPaymentSchedule>
Payment schedule for the mandate.
transaction_type: Option<CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptionsTransactionType>
Transaction type of the mandate.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Clone for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
Source§fn clone(
&self,
) -> CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
fn clone( &self, ) -> CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
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 CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
impl RefUnwindSafe for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Send for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Sync for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
impl Unpin for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
impl UnwindSafe for CreatePaymentIntentPaymentMethodOptionsAcssDebitMandateOptions
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