# MD for: https://www.mercadopago.com.ar/developers/es/docs/checkout-bricks/brand-brick/settings/payment-methods.md \# Payment methods The following table demonstrates the available payment method settings for each value prop: | Value prop | Settings| |---|---| |\`payment\_methods\` (default) e \`payment\_methods\_logos\`| - Payment methods (Available balance and Installments without Card will always be enabled; credit and debit cards; ticket) \- Credit card brands (Visa, Mastercard, American Express, Naranja X, Cabal Cencosud, Cordobesa, Argencard, Diners, Tarjeta Shopping and CMR) \- Number of installments (2 to 12) \- Installments with or without interest \- Debit card brands (Visa, Mastercard, Maestro and Cabal) \- Ticket (Rapipago and Pago Fácil)| |\`installments\`| - Credit card brands (Visa, Mastercard, American Express, Naranja X, Cabal Cencosud, Cordobesa, Argencard, Diners, Tarjeta Shopping and CMR) \- Number of installments (2 to 12) \- Installments with or without interest | |\`security\`|No settings for the pop-up.| |\`credits\`|No pop-up. | Customizations are passed to Brick through the object below, which must be sent as the third parameter in the \`create()\`\` method. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { customization: { paymentMethods: { excludedPaymentMethods: ["master"], // optional string[]. default []. options ["master", "visa", "amex", "naranja", "maestro", "cabal", "cencosud", "cordobesa", "argencard", "diners", "tarshop", "cmr", "rapipago", "pagofacil", "mercadopago"] excludedPaymentTypes: ["ticket"], // optional string[]. default []. options ["credit_card", "debit_card", "ticket"] maxInstallments: 12, // optional number. min 2 max 12 interestFreeInstallments: false, // optional boolean }, }, }; ``` Copiar ``` const customization = { paymentMethods: { excludedPaymentMethods: ["master"], // optional string[]. default []. options ["master", "visa", "amex", "naranja", "maestro", "cabal", "cencosud", "cordobesa", "argencard", "diners", "tarshop", "cmr", "rapipago", "pagofacil", "mercadopago"] excludedPaymentTypes: ["ticket"], // optional string[]. default []. optional string[]. default []. options ["credit_card", "debit_card", "ticket", "account_money", "mercado_credito"] maxInstallments: 12, // optional number. min 2 max 12 interestFreeInstallments: false, // optional boolean }, }; ``` Copiar