diff --git a/incognia/models.py b/incognia/models.py index 7028132..df13025 100644 --- a/incognia/models.py +++ b/incognia/models.py @@ -37,8 +37,19 @@ class CardInfo(TypedDict, total=False): expiry_year: str expiry_month: str - class PaymentMethod(TypedDict, total=False): - type: Literal['credit', 'debit'] + type: Literal[ + "credit", + "debit", + "apple_pay", + "google_pay", + "nu_pay", + "pix", + "account_balance", + "meal_voucher", + "cash", + "paypal", + "bancolombia", + ] credit_card_info: CardInfo debit_card_info: CardInfo