pub struct BillingDetails {
pub address: Option<Address>,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
pub tax_id: Option<String>,
}
Fields§
§address: Option<Address>
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.
Trait Implementations§
Source§impl Clone for BillingDetails
impl Clone for BillingDetails
Source§fn clone(&self) -> BillingDetails
fn clone(&self) -> BillingDetails
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 BillingDetails
impl Debug for BillingDetails
Source§impl Deserialize for BillingDetails
impl Deserialize for BillingDetails
Source§impl FromValueOpt for BillingDetails
impl FromValueOpt for BillingDetails
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for BillingDetails
impl ObjectDeser for BillingDetails
Auto Trait Implementations§
impl Freeze for BillingDetails
impl RefUnwindSafe for BillingDetails
impl Send for BillingDetails
impl Sync for BillingDetails
impl Unpin for BillingDetails
impl UnwindSafe for BillingDetails
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