com.unzer.payment.communication.json.JsonInstallmentSecuredRatePlanList Maven / Gradle / Ivy
package com.unzer.payment.communication.json;
import com.unzer.payment.business.paymenttypes.InstallmentSecuredRatePlan;
import java.util.ArrayList;
import java.util.List;
public class JsonInstallmentSecuredRatePlanList {
private String code;
private List entity = new ArrayList();
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public List getEntity() {
return entity;
}
public void setEntity(List entity) {
this.entity = entity;
}
}