Skip to content

Commit

Permalink
Updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pqvst committed Sep 4, 2020
1 parent 2a979f0 commit 39e2d1e
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,21 +295,28 @@ taxOrigin | string | Your tax origin used to determine taxation
You can apply a default tax rate for all customers or individual per-country tax rates. By default all customers are set to `taxable`, unless overridden by `taxExempt` or by automatic [VAT Collection](#vat-collection).

Apply a default tax rate to all customers:

```js
{ default: 'txr_...' }
```

Apply a tax rate to eu customers only:

```js
{ default: '...' }
{ eu: 'txr_...' }
```

Only apply a tax rate for `GB` customers:

```js
{ GB: '...' }
{ GB: 'txr_...' }
```

Apply a specific tax rate for `US` customers, otherwise use the default tax rate:

```js
{ US: '...',
default: '...' }
{ US: 'txr_...',
default: 'txr_...' }
```

A tax rate should be a valid Stripe `tax_rate` object ID.
Expand Down

0 comments on commit 39e2d1e

Please sign in to comment.