pub struct TaxInfo {
pub tax_id: String,
pub tax_id_type: TaxIdType,
}
Fields§
§tax_id: String
The customer’s tax ID value.
tax_id_type: TaxIdType
The customer’s tax ID type.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TaxInfo
impl<'de> Deserialize<'de> for TaxInfo
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
Auto Trait Implementations§
impl Freeze for TaxInfo
impl RefUnwindSafe for TaxInfo
impl Send for TaxInfo
impl Sync for TaxInfo
impl Unpin for TaxInfo
impl UnwindSafe for TaxInfo
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