AdyenErrorCodesEnum
class AdyenErrorCodesEnum(Enum): C02 = "Cart is empty" C03 = "Cart does not exist" C05 = "Cart has mixed products" C10 = "Cart total is inconsistent" C15 = "Cart subtotal is inconsistent" C20 = "cart Tip is inconsistent" O10 = "Order total is inconsistent" O15 = "Order subtotal is inconsistent" O20 = "Order tip is inconsistent" S25 = "Is in blacklist" P30 = "Something went wrong in risk data" P35 = "Something went wrong in payment" P40 = "Something went wrong in capture" DS05 = "Failed to send request to 3DS" DS10 = "PspReference is empty" DS15 = "Payment not found" M05 = "Magento timeout" MC45 = "Failed to get cart" MC47 = "Failed to set payment method" MC50 = "Failed to create order" MC52 = "Failed to get order" MC55 = "Failed sending order to magento" MT60 = "Failed reporting TIP2 in magento" T70 = "Tip has invalid amount" T72 = "Order is not complete" T73 = "Order has post sales tip" T75 = "Order has antigens products" T76 = "All products are type donation" E500 = "Internal server error"
Leave a Comment