1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use serde::{Serialize, Deserialize};
/**Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax.
Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates)*/
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct TaxRate {
///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.
pub active: bool,
///Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
#[serde(skip_serializing_if = "Option::is_none")]
pub country: Option<String>,
///Time at which the object was created. Measured in seconds since the Unix epoch.
pub created: i64,
///An arbitrary string attached to the tax rate for your internal use only. It will not be visible to your customers.
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<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.
pub display_name: String,
/**Actual/effective tax rate percentage out of 100. For tax calculations with automatic_tax[enabled]=true,
this percentage reflects the rate actually used to calculate tax based on the product's taxability
and whether the user is registered to collect taxes in the corresponding jurisdiction.*/
#[serde(skip_serializing_if = "Option::is_none")]
pub effective_percentage: Option<f64>,
///Unique identifier for the object.
pub id: String,
///This specifies if the tax rate is inclusive or exclusive.
pub inclusive: bool,
///The jurisdiction for the tax rate. You can use this label field for tax reporting purposes. It also appears on your customer’s invoice.
#[serde(skip_serializing_if = "Option::is_none")]
pub jurisdiction: Option<String>,
///Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
pub livemode: bool,
///Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
#[serde(skip_serializing_if = "Option::is_none")]
pub metadata: Option<serde_json::Value>,
///String representing the object's type. Objects of the same type share the same value.
pub object: String,
///Tax rate percentage out of 100. For tax calculations with automatic_tax[enabled]=true, this percentage includes the statutory tax rate of non-taxable jurisdictions.
pub percentage: f64,
///[ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States.
#[serde(skip_serializing_if = "Option::is_none")]
pub state: Option<String>,
///The high-level tax type, such as `vat` or `sales_tax`.
#[serde(skip_serializing_if = "Option::is_none")]
pub tax_type: Option<String>,
}
impl std::fmt::Display for TaxRate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}