openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Test API with DELETE Response Schema — 1.0.0
// Test fixture for DELETE operations with JSON response schemas and type alias request bodies

package com.example.sdk.models;

/**
 * HTTP error response
 */
public class HttpErrorResponse {
    private String error;
    private String message;

    public HttpErrorResponse(String error, String message) {
        this.error = error;
        this.message = message;
    }

    public String getError() {
        return this.error;
    }

    public String getMessage() {
        return this.message;
    }
}