pub struct ConfirmPaymentIntentPaymentMethodOptionsCardPresent {
pub request_extended_authorization: Option<bool>,
pub request_incremental_authorization_support: Option<bool>,
pub routing: Option<ConfirmPaymentIntentPaymentMethodOptionsCardPresentRouting>,
}
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<ConfirmPaymentIntentPaymentMethodOptionsCardPresentRouting>
Network routing priority on co-branded EMV cards supporting domestic debit and international card schemes.
Implementations§
Trait Implementations§
Source§impl Clone for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
impl Clone for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
Source§fn clone(&self) -> ConfirmPaymentIntentPaymentMethodOptionsCardPresent
fn clone(&self) -> ConfirmPaymentIntentPaymentMethodOptionsCardPresent
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 ConfirmPaymentIntentPaymentMethodOptionsCardPresent
Auto Trait Implementations§
impl Freeze for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
impl RefUnwindSafe for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
impl Send for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
impl Sync for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
impl Unpin for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
impl UnwindSafe for ConfirmPaymentIntentPaymentMethodOptionsCardPresent
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