[−][src]Struct stripe::TaxId
The resource representing a Stripe "tax_id".
Fields
id: TaxIdIdUnique identifier for the object.
country: Option<String>Two-letter ISO code representing the country of the tax ID.
created: Option<Timestamp>Time at which the object was created.
Measured in seconds since the Unix epoch.
customer: Option<Expandable<Customer>>ID of the customer.
deleted: boollivemode: Option<bool>Has the value true if the object exists in live mode or the value false if the object exists in test mode.
type_: Option<TaxIdType>Type of the tax ID, one of au_abn, eu_vat, in_gst, no_vat, nz_gst, or unknown.
value: Option<String>Value of the tax ID.
verification: Option<TaxIdVerification>Trait Implementations
impl Clone for TaxId[src]
impl Debug for TaxId[src]
impl<'de> Deserialize<'de> for TaxId[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Object for TaxId[src]
type Id = TaxIdId
The canonical id type for this object.
fn id(&self) -> Self::Id[src]
fn object(&self) -> &'static str[src]
impl Serialize for TaxId[src]
Auto Trait Implementations
impl RefUnwindSafe for TaxId
impl Send for TaxId
impl Sync for TaxId
impl Unpin for TaxId
impl UnwindSafe for TaxId
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,