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

com.github.kongchen.swagger.docgen.mustache.MustacheParameterSet Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package com.github.kongchen.swagger.docgen.mustache;

import java.util.List;
import java.util.Map;

public class MustacheParameterSet {
    private String paramType;

    private List paras;

    public MustacheParameterSet(Map.Entry> entry) {
        this.paramType = entry.getKey();
        this.paras = entry.getValue();
    }

    public String getParamType() {
        return paramType;
    }

    public void setParamType(String paramType) {
        this.paramType = paramType;
    }

    public List getParas() {
        return paras;
    }

    public void setParas(List paras) {
        this.paras = paras;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy