From 9fa470e0e53a00741cbaedc51a592c75b73f3cf3 Mon Sep 17 00:00:00 2001 From: Joao Valadares Date: Fri, 3 Jan 2025 11:08:11 -0300 Subject: [PATCH] Update models.py PaymentMethod class to match current implementation --- incognia/models.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/incognia/models.py b/incognia/models.py index 7028132..d7f3038 100644 --- a/incognia/models.py +++ b/incognia/models.py @@ -39,6 +39,18 @@ class CardInfo(TypedDict, total=False): class PaymentMethod(TypedDict, total=False): - type: Literal['credit', 'debit'] + type: Literal[ + "credit_card", + "debit_card", + "apple_pay", + "google_pay", + "nu_pay", + "pix", + "account_balance", + "meal_voucher", + "cash", + "paypal", + "bancolombia", + ] credit_card_info: CardInfo debit_card_info: CardInfo