Skip to content

Commit

Permalink
Merge pull request #1017 from stripe/remi-add-new-tax-ids
Browse files Browse the repository at this point in the history
Add new values for `TaxIDType` and fix `TaxIDTypeCHVAT`
  • Loading branch information
remi-stripe authored Jan 23, 2020
2 parents 725c28b + d00170f commit a0ac5b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion taxid.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ type TaxIDType string
// List of values that TaxIDType can take.
const (
TaxIDTypeAUABN TaxIDType = "au_abn"
TaxIDTypeCHVAT TaxIDType = "eu_vat"
TaxIDTypeCABN TaxIDType = "ca_bn"
TaxIDTypeCHVAT TaxIDType = "ch_vat"
TaxIDTypeEUVAT TaxIDType = "eu_vat"
TaxIDTypeHKBR TaxIDType = "hk_br"
TaxIDTypeINGST TaxIDType = "in_gst"
TaxIDTypeMXRFC TaxIDType = "mx_rfc"
TaxIDTypeNOVAT TaxIDType = "no_vat"
TaxIDTypeNZGST TaxIDType = "nz_gst"
TaxIDTypeRUINN TaxIDType = "ru_inn"
TaxIDTypeSGUEN TaxIDType = "sg_uen"
TaxIDTypeZAVAT TaxIDType = "za_vat"
TaxIDTypeUnknown TaxIDType = "unknown"
Expand Down

0 comments on commit a0ac5b8

Please sign in to comment.