pub struct InvoiceRecipientTaxIds {
pub eu_vat: Option<String>,
}
Expand description
Represents the tax IDs for an invoice recipient.
The country of the seller account determines whether the corresponding tax_ids
field is
available for the customer. For more information, see Invoice recipient tax
IDs.
Fields§
§eu_vat: Option<String>
Read only The EU VAT identification number for the invoice recipient. For example, IE3426675K.
Trait Implementations§
Source§impl Clone for InvoiceRecipientTaxIds
impl Clone for InvoiceRecipientTaxIds
Source§fn clone(&self) -> InvoiceRecipientTaxIds
fn clone(&self) -> InvoiceRecipientTaxIds
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 InvoiceRecipientTaxIds
impl Debug for InvoiceRecipientTaxIds
Source§impl Default for InvoiceRecipientTaxIds
impl Default for InvoiceRecipientTaxIds
Source§fn default() -> InvoiceRecipientTaxIds
fn default() -> InvoiceRecipientTaxIds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoiceRecipientTaxIds
impl<'de> Deserialize<'de> for InvoiceRecipientTaxIds
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 InvoiceRecipientTaxIds
impl PartialEq for InvoiceRecipientTaxIds
Source§impl Serialize for InvoiceRecipientTaxIds
impl Serialize for InvoiceRecipientTaxIds
impl Eq for InvoiceRecipientTaxIds
impl StructuralPartialEq for InvoiceRecipientTaxIds
Auto Trait Implementations§
impl Freeze for InvoiceRecipientTaxIds
impl RefUnwindSafe for InvoiceRecipientTaxIds
impl Send for InvoiceRecipientTaxIds
impl Sync for InvoiceRecipientTaxIds
impl Unpin for InvoiceRecipientTaxIds
impl UnwindSafe for InvoiceRecipientTaxIds
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.