Configure installments - Additional settings - Mercado Pago Developers

CLIENT_SIDE

h1Configure maximum and minimum number of installments
BrickCard Payment Brick
Customization momentWhen rendering Brick
Propertycustomization.paymentMethods.minInstallments && customization.paymentMethods.maxInstallments
Typenumber
CommentsWhen a value is passed for min or maxInstallments, the number of installments will be constrained by the values ​​passed.

javascript

const settings = {
    ...,
    customization: {
        paymentMethods: {
            minInstallments: number,
            maxInstallments: number,
        },
    },
}