pub struct PaymentFlowsPrivatePaymentMethodsAlipayDetails {
pub buyer_id: Option<String>,
pub fingerprint: Option<String>,
pub transaction_id: Option<String>,
}
Fields§
§buyer_id: Option<String>
Uniquely identifies this particular Alipay account. You can use this attribute to check whether two Alipay accounts are the same.
fingerprint: Option<String>
Uniquely identifies this particular Alipay account. You can use this attribute to check whether two Alipay accounts are the same.
transaction_id: Option<String>
Transaction ID of this particular Alipay transaction.
Trait Implementations§
Source§impl Clone for PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl Clone for PaymentFlowsPrivatePaymentMethodsAlipayDetails
Source§fn clone(&self) -> PaymentFlowsPrivatePaymentMethodsAlipayDetails
fn clone(&self) -> PaymentFlowsPrivatePaymentMethodsAlipayDetails
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 PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl FromValueOpt for PaymentFlowsPrivatePaymentMethodsAlipayDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl RefUnwindSafe for PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl Send for PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl Sync for PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl Unpin for PaymentFlowsPrivatePaymentMethodsAlipayDetails
impl UnwindSafe for PaymentFlowsPrivatePaymentMethodsAlipayDetails
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