AI resources
Configure installments
Client-Side
| Brick | Card Payment Brick |
| Customization moment | When rendering Brick. |
| Property | customization.paymentMethods.minInstallments && customization.paymentMethods.maxInstallments |
| Type | number |
| Comments | When a value is passed for min or maxInstallments, the number of installments will be constrained by the values passed. |
const settings = {
...,
customization: {
paymentMethods: {
minInstallments: 1, // number
maxInstallments: 12, // number
},
},
}
const customization = {
paymentMethods: {
minInstallments: 1, // number
maxInstallments: 12, // number
},
};