pub struct BillingDetailsInnerParams {
pub address: Option<BillingDetailsAddress>,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
pub tax_id: Option<String>,
}
Fields§
§address: Option<BillingDetailsAddress>
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 BillingDetailsInnerParams
impl Clone for BillingDetailsInnerParams
Source§fn clone(&self) -> BillingDetailsInnerParams
fn clone(&self) -> BillingDetailsInnerParams
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 Debug for BillingDetailsInnerParams
impl Debug for BillingDetailsInnerParams
Source§impl Default for BillingDetailsInnerParams
impl Default for BillingDetailsInnerParams
Auto Trait Implementations§
impl Freeze for BillingDetailsInnerParams
impl RefUnwindSafe for BillingDetailsInnerParams
impl Send for BillingDetailsInnerParams
impl Sync for BillingDetailsInnerParams
impl Unpin for BillingDetailsInnerParams
impl UnwindSafe for BillingDetailsInnerParams
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