pub struct TaxCode {
pub description: String,
pub id: String,
pub name: String,
pub object: String,
}
Expand description
Tax codes classify goods and services for tax purposes.
Fields§
§description: String
A detailed description of which types of products the tax code represents.
id: String
Unique identifier for the object.
name: String
A short name for the tax code.
object: String
String representing the object’s type. Objects of the same type share the same value.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TaxCode
impl<'de> Deserialize<'de> for TaxCode
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 TaxCode
impl RefUnwindSafe for TaxCode
impl Send for TaxCode
impl Sync for TaxCode
impl Unpin for TaxCode
impl UnwindSafe for TaxCode
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