pub enum ConfirmPaymentIntentOffSession {
OneOff,
Recurring,
Bool(bool),
}
Expand description
Set to true
to indicate that the customer isn’t in your checkout flow during this payment attempt and can’t authenticate.
Use this parameter in scenarios where you collect card details and charge them later.
Variants§
Trait Implementations§
Source§impl Clone for ConfirmPaymentIntentOffSession
impl Clone for ConfirmPaymentIntentOffSession
Source§fn clone(&self) -> ConfirmPaymentIntentOffSession
fn clone(&self) -> ConfirmPaymentIntentOffSession
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 ConfirmPaymentIntentOffSession
Auto Trait Implementations§
impl Freeze for ConfirmPaymentIntentOffSession
impl RefUnwindSafe for ConfirmPaymentIntentOffSession
impl Send for ConfirmPaymentIntentOffSession
impl Sync for ConfirmPaymentIntentOffSession
impl Unpin for ConfirmPaymentIntentOffSession
impl UnwindSafe for ConfirmPaymentIntentOffSession
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