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

io.github.swagger2markup.model.Parameter Maven / Gradle / Ivy

The newest version!
package io.github.swagger2markup.model;

/**
 * Parameter wrapper for Schema parameter model
 */
public class Parameter {
    private String name;
    private String in;

    public Parameter(String name, String in) {
        this.name = name;
        this.in = in;
    }

    public String getName() {
        return name;
    }

    public String getIn() {
        return in;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy