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

org.swaggertools.demo.model.Error Maven / Gradle / Ivy

The newest version!
package org.swaggertools.demo.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.Integer;
import java.lang.String;
import java.util.HashMap;

public class Error extends HashMap {
    @JsonProperty("code")
    private Integer code;

    @JsonProperty("message")
    private String message;

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy