[][src]Struct stripe::TaxRate

pub struct TaxRate {
    pub id: TaxRateId,
    pub active: bool,
    pub created: Timestamp,
    pub description: Option<String>,
    pub display_name: String,
    pub inclusive: bool,
    pub jurisdiction: Option<String>,
    pub livemode: bool,
    pub metadata: Metadata,
    pub percentage: f64,
}

The resource representing a Stripe "TaxRate".

For more details see https://stripe.com/docs/api/tax_rates/object.

Fields

id: TaxRateId

Unique identifier for the object.

active: bool

Defaults to true.

When set to false, this tax rate cannot be applied to objects in the API, but will still be applied to subscriptions and invoices that already have it set.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

description: Option<String>

An arbitrary string attached to the tax rate for your internal use only.

It will not be visible to your customers.

display_name: String

The display name of the tax rates as it will appear to your customer on their receipt email, PDF, and the hosted invoice page.

inclusive: bool

This specifies if the tax rate is inclusive or exclusive.

jurisdiction: Option<String>

The jurisdiction for the tax rate.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

metadata: Metadata

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

percentage: f64

This represents the tax rate percent out of 100.

Methods

impl TaxRate[src]

pub fn list(client: &Client, params: ListTaxRates) -> Response<List<TaxRate>>[src]

Returns a list of your tax rates.

Tax rates are returned sorted by creation date, with the most recently created tax rates appearing first.

pub fn create(client: &Client, params: CreateTaxRate) -> Response<TaxRate>[src]

Creates a new tax rate.

pub fn retrieve(
    client: &Client,
    id: &TaxRateId,
    expand: &[&str]
) -> Response<TaxRate>
[src]

Retrieves a tax rate with the given ID.

pub fn update(
    client: &Client,
    id: &TaxRateId,
    params: UpdateTaxRate
) -> Response<TaxRate>
[src]

Updates an existing tax rate.

Trait Implementations

impl Object for TaxRate[src]

type Id = TaxRateId

The canonical id type for this object.

impl Clone for TaxRate[src]

impl Debug for TaxRate[src]

impl Serialize for TaxRate[src]

impl<'de> Deserialize<'de> for TaxRate[src]

Auto Trait Implementations

impl Unpin for TaxRate

impl Sync for TaxRate

impl Send for TaxRate

impl UnwindSafe for TaxRate

impl RefUnwindSafe for TaxRate

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self