pub struct CustomerTaxIds {
pub eu_vat: Option<String>,
}
Expand description
Represents the tax ID associated with a [Customer] profile.
The corresponding tax_ids
field is available only for customers of sellers in EU countries or
the United Kingdom. For more information, see Customer tax
IDs.
Fields§
§eu_vat: Option<String>
The EU VAT identification number for the customer. For example, IE3426675K
. The ID can
contain alphanumeric characters only.
Trait Implementations§
Source§impl Clone for CustomerTaxIds
impl Clone for CustomerTaxIds
Source§fn clone(&self) -> CustomerTaxIds
fn clone(&self) -> CustomerTaxIds
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CustomerTaxIds
impl Debug for CustomerTaxIds
Source§impl Default for CustomerTaxIds
impl Default for CustomerTaxIds
Source§fn default() -> CustomerTaxIds
fn default() -> CustomerTaxIds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerTaxIds
impl<'de> Deserialize<'de> for CustomerTaxIds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CustomerTaxIds
impl PartialEq for CustomerTaxIds
Source§impl Serialize for CustomerTaxIds
impl Serialize for CustomerTaxIds
impl Eq for CustomerTaxIds
impl StructuralPartialEq for CustomerTaxIds
Auto Trait Implementations§
impl Freeze for CustomerTaxIds
impl RefUnwindSafe for CustomerTaxIds
impl Send for CustomerTaxIds
impl Sync for CustomerTaxIds
impl Unpin for CustomerTaxIds
impl UnwindSafe for CustomerTaxIds
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.