Configure installments
Client-Side
Brick | 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: number,
maxInstallments: number,
},
},
}
const customization = {
paymentMethods: {
minInstallments: number,
maxInstallments: number,
},
};