pub struct CreateConfirmationTokenPaymentMethodDataBillingDetails {
pub address: Option<CreateConfirmationTokenPaymentMethodDataBillingDetailsAddress>,
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<CreateConfirmationTokenPaymentMethodDataBillingDetailsAddress>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 CreateConfirmationTokenPaymentMethodDataBillingDetails
impl Clone for CreateConfirmationTokenPaymentMethodDataBillingDetails
Source§fn clone(&self) -> CreateConfirmationTokenPaymentMethodDataBillingDetails
fn clone(&self) -> CreateConfirmationTokenPaymentMethodDataBillingDetails
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 PartialEq for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl PartialEq for CreateConfirmationTokenPaymentMethodDataBillingDetails
Source§fn eq(
&self,
other: &CreateConfirmationTokenPaymentMethodDataBillingDetails,
) -> bool
fn eq( &self, other: &CreateConfirmationTokenPaymentMethodDataBillingDetails, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl StructuralPartialEq for CreateConfirmationTokenPaymentMethodDataBillingDetails
Auto Trait Implementations§
impl Freeze for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl RefUnwindSafe for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl Send for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl Sync for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl Unpin for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl UnsafeUnpin for CreateConfirmationTokenPaymentMethodDataBillingDetails
impl UnwindSafe for CreateConfirmationTokenPaymentMethodDataBillingDetails
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