pub struct PaymentMethodOptionsCardPresent {
pub request_extended_authorization: Option<bool>,
pub request_incremental_authorization_support: Option<bool>,
pub routing: Option<PaymentMethodOptionsCardPresentRouting>,
}
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<PaymentMethodOptionsCardPresentRouting>
Trait Implementations§
Source§impl Clone for PaymentMethodOptionsCardPresent
impl Clone for PaymentMethodOptionsCardPresent
Source§fn clone(&self) -> PaymentMethodOptionsCardPresent
fn clone(&self) -> PaymentMethodOptionsCardPresent
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 PaymentMethodOptionsCardPresent
impl FromValueOpt for PaymentMethodOptionsCardPresent
fn from_value(v: Value) -> Option<Self>
impl Copy for PaymentMethodOptionsCardPresent
Auto Trait Implementations§
impl Freeze for PaymentMethodOptionsCardPresent
impl RefUnwindSafe for PaymentMethodOptionsCardPresent
impl Send for PaymentMethodOptionsCardPresent
impl Sync for PaymentMethodOptionsCardPresent
impl Unpin for PaymentMethodOptionsCardPresent
impl UnwindSafe for PaymentMethodOptionsCardPresent
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