From 2ee741c4dd92cb92c7ab9c590782abda4576744f Mon Sep 17 00:00:00 2001 From: Richard Marmorstein <52928443+richardm-stripe@users.noreply.github.com> Date: Fri, 19 Nov 2021 13:53:25 -0500 Subject: [PATCH] Codegen for openapi 08ff630 (#1206) --- lib/Service/PaymentIntentService.php | 3 ++- lib/TaxRate.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Service/PaymentIntentService.php b/lib/Service/PaymentIntentService.php index 07b81d5e5..912cec14d 100644 --- a/lib/Service/PaymentIntentService.php +++ b/lib/Service/PaymentIntentService.php @@ -24,7 +24,8 @@ public function all($params = null, $opts = null) /** * A PaymentIntent object can be canceled when it is in one of these statuses: * requires_payment_method, requires_capture, - * requires_confirmation, or requires_action. + * requires_confirmation, requires_action, or + * processing. * * Once canceled, no additional charges will be made by the PaymentIntent and any * operations on the PaymentIntent will fail with an error. For PaymentIntents with diff --git a/lib/TaxRate.php b/lib/TaxRate.php index 9634e3cef..5a456378a 100644 --- a/lib/TaxRate.php +++ b/lib/TaxRate.php @@ -41,6 +41,7 @@ class TaxRate extends ApiResource const TAX_TYPE_GST = 'gst'; const TAX_TYPE_HST = 'hst'; + const TAX_TYPE_JCT = 'jct'; const TAX_TYPE_PST = 'pst'; const TAX_TYPE_QST = 'qst'; const TAX_TYPE_RST = 'rst';