@@ -152,6 +152,7 @@ class ElementCardAuthorizationNetworkDetailsVisa(BaseModel):
152152 "invalid_cardholder_authentication_verification_value" ,
153153 "internal_visa_error" ,
154154 "merchant_transaction_advisory_service_authentication_required" ,
155+ "payment_fraud_disruption_acquirer_block" ,
155156 "other" ,
156157 ]
157158 ] = None
@@ -173,6 +174,9 @@ class ElementCardAuthorizationNetworkDetailsVisa(BaseModel):
173174 has enabled Visa's Transaction Advisory Service and requires further
174175 authentication to perform the transaction. In practice this is often utilized
175176 at fuel pumps to tell the cardholder to see the cashier.
177+ - `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
178+ Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
179+ such as card testing.
176180 - `other` - An unspecific reason for stand-in processing.
177181 """
178182
@@ -565,6 +569,7 @@ class ElementCardDeclineNetworkDetailsVisa(BaseModel):
565569 "invalid_cardholder_authentication_verification_value" ,
566570 "internal_visa_error" ,
567571 "merchant_transaction_advisory_service_authentication_required" ,
572+ "payment_fraud_disruption_acquirer_block" ,
568573 "other" ,
569574 ]
570575 ] = None
@@ -586,6 +591,9 @@ class ElementCardDeclineNetworkDetailsVisa(BaseModel):
586591 has enabled Visa's Transaction Advisory Service and requires further
587592 authentication to perform the transaction. In practice this is often utilized
588593 at fuel pumps to tell the cardholder to see the cashier.
594+ - `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
595+ Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
596+ such as card testing.
589597 - `other` - An unspecific reason for stand-in processing.
590598 """
591599
@@ -2411,6 +2419,7 @@ class ElementCardValidationNetworkDetailsVisa(BaseModel):
24112419 "invalid_cardholder_authentication_verification_value" ,
24122420 "internal_visa_error" ,
24132421 "merchant_transaction_advisory_service_authentication_required" ,
2422+ "payment_fraud_disruption_acquirer_block" ,
24142423 "other" ,
24152424 ]
24162425 ] = None
@@ -2432,6 +2441,9 @@ class ElementCardValidationNetworkDetailsVisa(BaseModel):
24322441 has enabled Visa's Transaction Advisory Service and requires further
24332442 authentication to perform the transaction. In practice this is often utilized
24342443 at fuel pumps to tell the cardholder to see the cashier.
2444+ - `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
2445+ Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
2446+ such as card testing.
24352447 - `other` - An unspecific reason for stand-in processing.
24362448 """
24372449
0 commit comments