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