cl.transbank.transaccioncompleta.model.MallFullTransactionInstallmentsResponse 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
package cl.transbank.transaccioncompleta.model;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class MallFullTransactionInstallmentsResponse {
private List responseList = new ArrayList<>();
private MallFullTransactionInstallmentsResponse() {}
public static MallFullTransactionInstallmentsResponse build() {
return new MallFullTransactionInstallmentsResponse();
}
public static MallFullTransactionInstallmentsResponse build(MallFullTransactionInstallmentResponse response) {
return MallFullTransactionInstallmentsResponse.build().add(response);
}
public MallFullTransactionInstallmentsResponse add(MallFullTransactionInstallmentResponse response) {
responseList.add(response);
return this;
}
public boolean remove(MallFullTransactionInstallmentResponse response) {
return getResponseList().remove(response);
}
public List getResponseList() {
return Collections.unmodifiableList(responseList);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy