Skip to content

Commit

Permalink
Merge pull request #661 from stripe/ob-new-tax-id-types
Browse files Browse the repository at this point in the history
Add new tax ID types
  • Loading branch information
ob-stripe authored May 22, 2019
2 parents f2fefcc + d47ff8a commit 0b1d462
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/TaxId.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ class TaxId extends ApiResource

/**
* Possible string representations of a tax id's type.
* @link https://stripe.com/docs/api/customers/tax_id_object#tax_id_object-type
* @link https://stripe.com/docs/api/customer_tax_ids/object#tax_id_object-type
*/
const TYPE_AU_ABN = 'au_abn';
const TYPE_EU_VAT = 'eu_vat';
const TYPE_IN_GST = 'in_gst';
const TYPE_NO_VAT = 'no_vat';
const TYPE_NZ_GST = 'nz_gst';
const TYPE_UNKNOWN = 'unknown';

Expand Down

0 comments on commit 0b1d462

Please sign in to comment.