pub struct CustomerTax {
pub automatic_tax: CustomerTaxAutomaticTax,
pub ip_address: Option<String>,
pub location: Option<CustomerTaxLocation>,
}
Fields§
§automatic_tax: CustomerTaxAutomaticTax
Surfaces if automatic tax computation is possible given the current customer location information.
ip_address: Option<String>
A recent IP address of the customer used for tax reporting and tax location inference.
location: Option<CustomerTaxLocation>
The identified tax location of the customer.
Trait Implementations§
Source§impl Clone for CustomerTax
impl Clone for CustomerTax
Source§fn clone(&self) -> CustomerTax
fn clone(&self) -> CustomerTax
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 CustomerTax
impl Debug for CustomerTax
Source§impl Deserialize for CustomerTax
impl Deserialize for CustomerTax
Source§impl ObjectDeser for CustomerTax
impl ObjectDeser for CustomerTax
Auto Trait Implementations§
impl Freeze for CustomerTax
impl RefUnwindSafe for CustomerTax
impl Send for CustomerTax
impl Sync for CustomerTax
impl Unpin for CustomerTax
impl UnwindSafe for CustomerTax
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