payment.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <payment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
  10. <credit_cards>
  11. <type id="AE" order="0">
  12. <label>American Express</label>
  13. </type>
  14. <type id="VI" order="10">
  15. <label>Visa</label>
  16. </type>
  17. <type id="MC" order="20">
  18. <label>MasterCard</label>
  19. </type>
  20. <type id="DI" order="30">
  21. <label>Discover</label>
  22. </type>
  23. <type id="SM" order="40">
  24. <label>Maestro/Switch</label>
  25. </type>
  26. <type id="SO" order="45">
  27. <label>Solo</label>
  28. </type>
  29. <type id="JCB" order="50">
  30. <label>JCB</label>
  31. </type>
  32. <type id="OT" order="1000">
  33. <label>Other</label>
  34. </type>
  35. <type id="DN" order="60">
  36. <label>Diners</label>
  37. </type>
  38. <type id="MI" order="80">
  39. <label>Maestro International</label>
  40. </type>
  41. <type id="MD" order="100">
  42. <label>Maestro Domestic</label>
  43. </type>
  44. </credit_cards>
  45. </payment>