From bddf2bf173b08fe10b0473dd57549378ae54bfb3 Mon Sep 17 00:00:00 2001 From: Shalltell Flores Date: Fri, 15 Nov 2019 16:44:25 -0800 Subject: [PATCH] Change string to boolean --- samples/payments/coreservices/process_payment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/payments/coreservices/process_payment.py b/samples/payments/coreservices/process_payment.py index d5d4ddf..98339a0 100644 --- a/samples/payments/coreservices/process_payment.py +++ b/samples/payments/coreservices/process_payment.py @@ -18,7 +18,7 @@ def process_a_payment(flag): processing_info = Ptsv2paymentsProcessingInformation() if flag: - processing_info.capture = "true" + processing_info.capture = True request.processing_information = processing_info.__dict__