
cl.transbank.webpay.transaccioncompleta.responses.MallFullTransactionInstallmentResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transbank-sdk-java Show documentation
Show all versions of transbank-sdk-java Show documentation
Tranbank API integration SDK for Java Projects
The newest version!
package cl.transbank.webpay.transaccioncompleta.responses;
import java.util.List;
import lombok.NoArgsConstructor;
/**
* This class represents the response of an installment operation in a Mall Full Transaction.
*/
@NoArgsConstructor
public class MallFullTransactionInstallmentResponse
extends FullTransactionInstallmentResponse {
/**
* Constructs a new MallFullTransactionInstallmentResponse with the specified parameters.
* @param installmentsAmount The amount of the installments.
* @param idQueryInstallments The ID of the query installments.
* @param deferredPeriods The list of deferred periods.
*/
MallFullTransactionInstallmentResponse(
double installmentsAmount,
Long idQueryInstallments,
List deferredPeriods
) {
super(installmentsAmount, idQueryInstallments, deferredPeriods);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy