From de0f30d0a62756926e6babe9592418b7ca50785c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armando=20Rodr=C3=ADguez?= <127134616+armando-rodriguez-cko@users.noreply.github.com> Date: Thu, 13 Nov 2025 10:48:31 +0100 Subject: [PATCH] feat: add PayLater payment type and remittance reference to PaymentInstruction --- checkout_sdk/payments/payments.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/checkout_sdk/payments/payments.py b/checkout_sdk/payments/payments.py index 142adb9..a0b79f7 100644 --- a/checkout_sdk/payments/payments.py +++ b/checkout_sdk/payments/payments.py @@ -43,6 +43,7 @@ class PaymentType(str, Enum): RECURRING = 'Recurring' MOTO = 'MOTO' INSTALLMENT = 'Installment' + PAYLATER = 'PayLater' UNSCHEDULED = 'Unscheduled' @@ -136,11 +137,16 @@ class BillingDescriptor: reference: str +class Remitance: + reference: str + + class PaymentInstruction: purpose: str charge_bearer: str repair: bool scheme: InstructionScheme + remittance: Remitance quote_id: str