pub struct ConfirmPaymentIntentPaymentMethodDataBillingDetails {
pub address: Option<ConfirmPaymentIntentPaymentMethodDataBillingDetailsAddress>,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
pub tax_id: Option<String>,
}
Expand description
Billing information associated with the PaymentMethod that may be used or required by particular types of payment methods.
Fields§
§address: Option<ConfirmPaymentIntentPaymentMethodDataBillingDetailsAddress>
Billing address.
email: Option<String>
Email address.
name: Option<String>
Full name.
phone: Option<String>
Billing phone number (including extension).
tax_id: Option<String>
Taxpayer identification number. Used only for transactions between LATAM buyers and non-LATAM sellers.
Implementations§
Trait Implementations§
Source§impl Clone for ConfirmPaymentIntentPaymentMethodDataBillingDetails
impl Clone for ConfirmPaymentIntentPaymentMethodDataBillingDetails
Source§fn clone(&self) -> ConfirmPaymentIntentPaymentMethodDataBillingDetails
fn clone(&self) -> ConfirmPaymentIntentPaymentMethodDataBillingDetails
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 moreAuto Trait Implementations§
impl Freeze for ConfirmPaymentIntentPaymentMethodDataBillingDetails
impl RefUnwindSafe for ConfirmPaymentIntentPaymentMethodDataBillingDetails
impl Send for ConfirmPaymentIntentPaymentMethodDataBillingDetails
impl Sync for ConfirmPaymentIntentPaymentMethodDataBillingDetails
impl Unpin for ConfirmPaymentIntentPaymentMethodDataBillingDetails
impl UnwindSafe for ConfirmPaymentIntentPaymentMethodDataBillingDetails
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