@@ -53,6 +53,8 @@ class ErrorCodes:
5353 InvalidToken : str
5454 PrivateKeyMismatch : str
5555 KeyMismatchStoringCertificate : str
56+ CustomerIdIsInvalid : str
57+ BillingAddressFormatIsInvalid : str
5658
5759 class AuthorizationFingerprint :
5860 MissingFingerprint : str
@@ -67,8 +69,10 @@ class ErrorCodes:
6769 MakeDefaultRequiresCustomerId : str
6870 VerifyCardRequiresCustomerId : str
6971 FailOnDuplicatePaymentMethodRequiresCustomerId : str
72+ InvalidDomainFormat : str
7073 CustomerDoesNotExist : str
7174 ProxyMerchantDoesNotExist : str
75+ TooManyDomains : str
7276 UnsupportedVersion : str
7377 MerchantAccountDoesNotExist : str
7478
@@ -410,6 +414,11 @@ class ErrorCodes:
410414 IBANIsRequired : str
411415 AccountHolderNameIsRequired : str
412416
417+ class SepaDirectDebitAccount :
418+ SepaDebitAccountPaymentMethodMandateTypeIsNotSupported : str
419+ SepaDebitAccountPaymentMethodCustomerIdIsInvalid : str
420+ SepaDebitAccountPaymentMethodCustomerIdIsRequired : str
421+
413422 class Subscription :
414423 BillingDayOfMonthCannotBeUpdated : str
415424 BillingDayOfMonthIsInvalid : str
@@ -737,6 +746,10 @@ class ErrorCodes:
737746 TotalAmountIsRequired : str
738747 TotalAmountIsTooLarge : str
739748 TotalAmountMustBeGreaterThanZero : str
749+ UPCCodeIsMissing : str
750+ UPCCodeIsTooLong : str
751+ UPCTypeIsInvalid : str
752+ UPCTypeIsMissing : str
740753 UnitAmountFormatIsInvalid : str
741754 UnitAmountIsRequired : str
742755 UnitAmountIsTooLarge : str
0 commit comments