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

io.swagger.codegen.v3.service.RenderResponse Maven / Gradle / Ivy

There is a newer version: 3.0.62
Show newest version
package io.swagger.codegen.v3.service;

import java.io.Serializable;

public class RenderResponse implements Serializable {
    private static final long serialVersionUID = 1L;

    private String value;

    public RenderResponse value(String value) {
        this.value = value;
        return this;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy