Struct stripe::TaxRate[][src]

pub struct TaxRate {
    pub id: TaxRateId,
    pub active: bool,
    pub country: Option<String>,
    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,
    pub state: Option<String>,
}

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 used with new applications or Checkout Sessions, but will still work for subscriptions and invoices that already have it set.

country: Option<String>

Two-letter country code (ISO 3166-1 alpha-2).

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.

You can use this label field for tax reporting purposes. It also appears on your customer’s invoice.

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.

state: Option<String>

ISO 3166-2 subdivision code, without country prefix.

For example, "NY" for New York, United States.

Implementations

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 Clone for TaxRate[src]

impl Debug for TaxRate[src]

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

impl Object for TaxRate[src]

type Id = TaxRateId

The canonical id type for this object.

impl Serialize for TaxRate[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]