pub struct CreatePaymentIntentAutomaticPaymentMethods {
pub allow_redirects: Option<CreatePaymentIntentAutomaticPaymentMethodsAllowRedirects>,
pub enabled: bool,
}
Expand description
When you enable this parameter, this PaymentIntent accepts payment methods that you enable in the Dashboard and that are compatible with this PaymentIntent’s other parameters.
Fields§
§allow_redirects: Option<CreatePaymentIntentAutomaticPaymentMethodsAllowRedirects>
Controls whether this PaymentIntent will accept redirect-based payment methods.
Redirect-based payment methods may require your customer to be redirected to a payment method’s app or site for authentication or additional steps.
To confirm this PaymentIntent, you may be required to provide a return_url
to redirect customers back to your site after they authenticate or complete the payment.
enabled: bool
Whether this feature is enabled.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentIntentAutomaticPaymentMethods
impl Clone for CreatePaymentIntentAutomaticPaymentMethods
Source§fn clone(&self) -> CreatePaymentIntentAutomaticPaymentMethods
fn clone(&self) -> CreatePaymentIntentAutomaticPaymentMethods
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 moreimpl Copy for CreatePaymentIntentAutomaticPaymentMethods
Auto Trait Implementations§
impl Freeze for CreatePaymentIntentAutomaticPaymentMethods
impl RefUnwindSafe for CreatePaymentIntentAutomaticPaymentMethods
impl Send for CreatePaymentIntentAutomaticPaymentMethods
impl Sync for CreatePaymentIntentAutomaticPaymentMethods
impl Unpin for CreatePaymentIntentAutomaticPaymentMethods
impl UnwindSafe for CreatePaymentIntentAutomaticPaymentMethods
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