pub struct PaymentIntentNextActionAlipayHandleRedirect {
pub native_data: Option<String>,
pub native_url: Option<String>,
pub return_url: Option<String>,
pub url: Option<String>,
}
Fields§
§native_data: Option<String>
The native data to be used with Alipay SDK you must redirect your customer to in order to authenticate the payment in an Android App.
native_url: Option<String>
The native URL you must redirect your customer to in order to authenticate the payment in an iOS App.
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 PaymentIntentNextActionAlipayHandleRedirect
impl Clone for PaymentIntentNextActionAlipayHandleRedirect
Source§fn clone(&self) -> PaymentIntentNextActionAlipayHandleRedirect
fn clone(&self) -> PaymentIntentNextActionAlipayHandleRedirect
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 PaymentIntentNextActionAlipayHandleRedirect
impl FromValueOpt for PaymentIntentNextActionAlipayHandleRedirect
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentNextActionAlipayHandleRedirect
impl RefUnwindSafe for PaymentIntentNextActionAlipayHandleRedirect
impl Send for PaymentIntentNextActionAlipayHandleRedirect
impl Sync for PaymentIntentNextActionAlipayHandleRedirect
impl Unpin for PaymentIntentNextActionAlipayHandleRedirect
impl UnwindSafe for PaymentIntentNextActionAlipayHandleRedirect
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