ng.com.systemspecs.remitarits.bulkpayment.BulkPaymentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remita-rits Show documentation
Show all versions of remita-rits Show documentation
Remita Interbank Transfer Service SDK
package ng.com.systemspecs.remitarits.bulkpayment;
import java.io.Serializable;
import java.util.List;
/**
* A configuration class
*
*
* @author Ilesanmi Omoniyi
*
* @since 1.0.0
*/
public class BulkPaymentRequest implements Serializable {
private BulkPaymentInfo bulkPaymentInfo;
private List paymentDetails;
public BulkPaymentInfo getBulkPaymentInfo() {
return bulkPaymentInfo;
}
public List getPaymentDetails() {
return paymentDetails;
}
public void setBulkPaymentInfo(BulkPaymentInfo bulkPaymentInfo) {
this.bulkPaymentInfo = bulkPaymentInfo;
}
public void setPaymentDetails(List paymentDetails) {
this.paymentDetails = paymentDetails;
}
@Override
public String toString() {
return "BulkPaymentRequest{" +
"bulkPaymentInfo=" + bulkPaymentInfo +
", paymentDetails=" + paymentDetails +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy