Struct stripe::ConfirmSetupIntent
source · pub struct ConfirmSetupIntent {
pub client_secret: Option<String>,
pub payment_method: Option<String>,
pub return_url: Option<String>,
}Expand description
The set of parameters that can be used when confirming a setup_intent object.
For more details see https://stripe.com/docs/api/setup_intents/confirm
Fields§
§client_secret: Option<String>The client secret if on the client side
payment_method: Option<String>Specifies which payment method
return_url: Option<String>The URL to redirect your customer back to after they authenticate on the payment method’s app or site.
Trait Implementations§
source§impl Clone for ConfirmSetupIntent
impl Clone for ConfirmSetupIntent
source§fn clone(&self) -> ConfirmSetupIntent
fn clone(&self) -> ConfirmSetupIntent
Returns a copy 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 Debug for ConfirmSetupIntent
impl Debug for ConfirmSetupIntent
Auto Trait Implementations§
impl Freeze for ConfirmSetupIntent
impl RefUnwindSafe for ConfirmSetupIntent
impl Send for ConfirmSetupIntent
impl Sync for ConfirmSetupIntent
impl Unpin for ConfirmSetupIntent
impl UnwindSafe for ConfirmSetupIntent
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