pub struct CreatePaymentIntentPaymentMethodOptionsCardPresent {
pub request_extended_authorization: Option<bool>,
pub request_incremental_authorization_support: Option<bool>,
pub routing: Option<CreatePaymentIntentPaymentMethodOptionsCardPresentRouting>,
}
Expand description
If this is a card_present
PaymentMethod, this sub-hash contains details about the Card Present payment method options.
Fields§
Request ability to capture this payment beyond the standard authorization validity window.
Request ability to increment this PaymentIntent if the combination of MCC and card brand is eligible. Check incremental_authorization_supported in the Confirm response to verify support.
routing: Option<CreatePaymentIntentPaymentMethodOptionsCardPresentRouting>
Network routing priority on co-branded EMV cards supporting domestic debit and international card schemes.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentIntentPaymentMethodOptionsCardPresent
impl Clone for CreatePaymentIntentPaymentMethodOptionsCardPresent
Source§fn clone(&self) -> CreatePaymentIntentPaymentMethodOptionsCardPresent
fn clone(&self) -> CreatePaymentIntentPaymentMethodOptionsCardPresent
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 CreatePaymentIntentPaymentMethodOptionsCardPresent
Auto Trait Implementations§
impl Freeze for CreatePaymentIntentPaymentMethodOptionsCardPresent
impl RefUnwindSafe for CreatePaymentIntentPaymentMethodOptionsCardPresent
impl Send for CreatePaymentIntentPaymentMethodOptionsCardPresent
impl Sync for CreatePaymentIntentPaymentMethodOptionsCardPresent
impl Unpin for CreatePaymentIntentPaymentMethodOptionsCardPresent
impl UnwindSafe for CreatePaymentIntentPaymentMethodOptionsCardPresent
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