pub struct PaymentFlowsAutomaticPaymentMethodsPaymentIntent {
pub allow_redirects: Option<PaymentFlowsAutomaticPaymentMethodsPaymentIntentAllowRedirects>,
pub enabled: bool,
}Fields§
§allow_redirects: Option<PaymentFlowsAutomaticPaymentMethodsPaymentIntentAllowRedirects>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: boolAutomatically calculates compatible payment methods
Trait Implementations§
Source§impl Clone for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl Clone for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
Source§fn clone(&self) -> PaymentFlowsAutomaticPaymentMethodsPaymentIntent
fn clone(&self) -> PaymentFlowsAutomaticPaymentMethodsPaymentIntent
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 moreSource§impl FromValueOpt for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl FromValueOpt for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl RefUnwindSafe for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl Send for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl Sync for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl Unpin for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
impl UnwindSafe for PaymentFlowsAutomaticPaymentMethodsPaymentIntent
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