All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy