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

onboarding.restassured.rest.MultiPartInfo Maven / Gradle / Ivy

package onboarding.restassured.rest;

class MultiPartInfo {

    private String key;
    private String value;
    private MultiPartType type;

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public MultiPartType getType() {
        return type;
    }

    public void setType(MultiPartType type) {
        this.type = type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy