@@ -80,6 +80,10 @@ class Customer(object):
8080 WebsiteIsInvalid = "81616"
8181 WebsiteIsTooLong = "81615"
8282
83+ class Descriptor (object ):
84+ NameFormatIsInvalid = "92201"
85+ PhoneFormatIsInvalid = "92202"
86+
8387 class Subscription (object ):
8488 BillingDayOfMonthCannotBeUpdated = "91918"
8589 BillingDayOfMonthIsInvalid = "91914"
@@ -103,6 +107,7 @@ class Subscription(object):
103107 PaymentMethodTokenCardTypeIsNotAccepted = "91902"
104108 PaymentMethodTokenIsInvalid = "91903"
105109 PaymentMethodTokenNotAssociatedWithCustomer = "91905"
110+ PlanBillingFrequencyCannotBeUpdated = "91922"
106111 PlanIdIsInvalid = "91904"
107112 PriceCannotBeBlank = "81903"
108113 PriceFormatIsInvalid = "81904"
@@ -134,8 +139,8 @@ class Modification(object):
134139
135140 class Transaction (object ):
136141 AmountCannotBeNegative = "81501"
137- AmountIsRequired = "81502"
138142 AmountIsInvalid = "81503"
143+ AmountIsRequired = "81502"
139144 AmountIsTooLarge = "81528"
140145 AmountMustBeGreaterThanZero = "81531"
141146 BillingAddressConflict = "91530"
@@ -144,16 +149,16 @@ class Transaction(object):
144149 CannotRefundUnlessSettled = "91506"
145150 CannotSubmitForSettlement = "91507"
146151 CreditCardIsRequired = "91508"
147- CustomerDefaultPaymentMethodCardTypeIsNotAccepted = "81509"
148152 CustomFieldIsInvalid = "91526"
149153 CustomFieldIsTooLong = "81527"
150- CustomerIdIsInvalid = "91510 "
154+ CustomerDefaultPaymentMethodCardTypeIsNotAccepted = "81509 "
151155 CustomerDoesNotHaveCreditCard = "91511"
156+ CustomerIdIsInvalid = "91510"
152157 HasAlreadyBeenRefunded = "91512"
153- MerchantAccountNameIsInvalid = "91513" # Deprecated
154158 MerchantAccountIdIsInvalid = "91513"
155159 MerchantAccountIsSusped = "91514" # Deprecated
156160 MerchantAccountIsSuspended = "91514"
161+ MerchantAccountNameIsInvalid = "91513" # Deprecated
157162 OrderIdIsTooLong = "91501"
158163 PaymentMethodConflict = "91515"
159164 PaymentMethodDoesNotBelongToCustomer = "91516"
@@ -162,14 +167,17 @@ class Transaction(object):
162167 PaymentMethodTokenIsInvalid = "91518"
163168 ProcessorAuthorizationCodeCannotBeSet = "91519"
164169 ProcessorAuthorizationCodeIsInvalid = "81520"
170+ PurchaseOrderNumberIsTooLong = "91537"
165171 RefundAmountIsTooLarge = "91521"
166172 SettlementAmountIsTooLarge = "91522"
167173 SubscriptionDoesNotBelongToCustomer = "91529"
168174 SubscriptionIdIsInvalid = "91528"
169175 SubscriptionStatusMustBePastDue = "91531"
176+ TaxAmountCannotBeNegative = "81534"
177+ TaxAmountFormatIsInvalid = "81535"
178+ TaxAmountIsTooLarge = "81536"
170179 TypeIsInvalid = "91523"
171180 TypeIsRequired = "91524"
172181
173182 class Options (object ):
174183 VaultIsDisabled = "91525"
175-
0 commit comments