From d8313fb22aafd25e6733596941d8917f4b0442f1 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 22 Jan 2020 19:26:38 -0800 Subject: [PATCH] Add new type values for `TaxId` --- lib/TaxId.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/TaxId.php b/lib/TaxId.php index 5a9f857ea..2c2b6218f 100644 --- a/lib/TaxId.php +++ b/lib/TaxId.php @@ -28,12 +28,15 @@ class TaxId extends ApiResource * @link https://stripe.com/docs/api/customer_tax_ids/object#tax_id_object-type */ const TYPE_AU_ABN = 'au_abn'; + const TYPE_CA_BN = 'ca_bn'; const TYPE_CH_VAT = 'ch_vat'; const TYPE_EU_VAT = 'eu_vat'; + const TYPE_HK_BR = 'hk_br'; const TYPE_IN_GST = 'in_gst'; const TYPE_MX_RFC = 'mx_rfc'; 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_UNKNOWN = 'unknown'; const TYPE_ZA_VAT = 'za_vat';