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