pub struct TaxCode {
pub description: String,
pub id: TaxCodeId,
pub name: String,
}
Expand description
Tax codes classify goods and services for tax purposes.
For more details see <https://stripe.com/docs/api/tax_codes/object>.
Fields§
§description: String
A detailed description of which types of products the tax code represents.
id: TaxCodeId
Unique identifier for the object.
name: String
A short name for the tax code.
Trait Implementations§
Source§impl Deserialize for TaxCode
impl Deserialize for TaxCode
Source§impl ObjectDeser for TaxCode
impl ObjectDeser for TaxCode
type Builder = TaxCodeBuilder
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