From d00170fe75c497cd941ea1b717689a6a1fe45657 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 22 Jan 2020 19:30:12 -0800 Subject: [PATCH] Add new values for TaxIDType and fix TaxIDTypeCHVAT --- taxid.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/taxid.go b/taxid.go index 2e2796ea20..cb6fec77fe 100644 --- a/taxid.go +++ b/taxid.go @@ -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"