Skip to content

Commit 39e2d1e

Browse files
committed
Updating readme
1 parent 2a979f0 commit 39e2d1e

1 file changed

Lines changed: 11 additions & 4 deletions

File tree

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,21 +295,28 @@ taxOrigin | string | Your tax origin used to determine taxation
295295
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).
296296

297297
Apply a default tax rate to all customers:
298+
299+
```js
300+
{ default: 'txr_...' }
301+
```
302+
303+
Apply a tax rate to eu customers only:
304+
298305
```js
299-
{ default: '...' }
306+
{ eu: 'txr_...' }
300307
```
301308

302309
Only apply a tax rate for `GB` customers:
303310

304311
```js
305-
{ GB: '...' }
312+
{ GB: 'txr_...' }
306313
```
307314

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

310317
```js
311-
{ US: '...',
312-
default: '...' }
318+
{ US: 'txr_...',
319+
default: 'txr_...' }
313320
```
314321

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

0 commit comments

Comments
 (0)