pub struct PaymentIntentNextActionRedirectToUrl {
pub return_url: Option<String>,
pub url: Option<String>,
}
Fields§
§return_url: Option<String>
If the customer does not exit their browser while authenticating, they will be redirected to this specified URL after completion.
url: Option<String>
The URL you must redirect your customer to in order to authenticate the payment.
Trait Implementations§
Source§impl Clone for PaymentIntentNextActionRedirectToUrl
impl Clone for PaymentIntentNextActionRedirectToUrl
Source§fn clone(&self) -> PaymentIntentNextActionRedirectToUrl
fn clone(&self) -> PaymentIntentNextActionRedirectToUrl
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 PaymentIntentNextActionRedirectToUrl
impl FromValueOpt for PaymentIntentNextActionRedirectToUrl
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentNextActionRedirectToUrl
impl RefUnwindSafe for PaymentIntentNextActionRedirectToUrl
impl Send for PaymentIntentNextActionRedirectToUrl
impl Sync for PaymentIntentNextActionRedirectToUrl
impl Unpin for PaymentIntentNextActionRedirectToUrl
impl UnwindSafe for PaymentIntentNextActionRedirectToUrl
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