openapi-nexus 0.1.7

OpenAPI 3.x multi-language code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Test API with Server Objects — 1.0.0
// This is a test API specification that includes various server configurations

package com.example.sdk.models;

public class GetUserByIdResponse404 {
    private String error;

    public GetUserByIdResponse404(String error) {
        this.error = error;
    }

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