Skip to content

Commit

Permalink
Merge pull request #889 from stripe/remi-add-tax-id-enum
Browse files Browse the repository at this point in the history
Add new constants for `type` on `TaxId`
  • Loading branch information
remi-stripe authored Feb 28, 2020
2 parents 17fd4a6 + 462292f commit f01f71d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/TaxId.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,25 @@ class TaxId extends ApiResource
*/
const TYPE_AU_ABN = 'au_abn';
const TYPE_CA_BN = 'ca_bn';
const TYPE_CA_QST = 'ca_qst';
const TYPE_CH_VAT = 'ch_vat';
const TYPE_ES_CIF = 'es_cif';
const TYPE_EU_VAT = 'eu_vat';
const TYPE_HK_BR = 'hk_br';
const TYPE_IN_GST = 'in_gst';
const TYPE_JP_CN = 'jp_cn';
const TYPE_KR_BRN = 'kr_brn';
const TYPE_LI_UID = 'li_uid';
const TYPE_MX_RFC = 'mx_rfc';
const TYPE_MY_ITN = 'my_itn';
const TYPE_MY_SST = 'my_sst';
const TYPE_NO_VAT = 'no_vat';
const TYPE_NZ_GST = 'nz_gst';
const TYPE_RU_INN = 'ru_inn';
const TYPE_SG_UEN = 'sg_uen';
const TYPE_TH_VAT = 'th_vat';
const TYPE_TW_VAT = 'tw_vat';
const TYPE_US_EIN = 'us_ein';
const TYPE_UNKNOWN = 'unknown';
const TYPE_ZA_VAT = 'za_vat';

Expand Down

0 comments on commit f01f71d

Please sign in to comment.