openapi-nexus 0.1.3

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.
//
// Interface with Enum Reference Test — 1.0.0
// Test case for interfaces that reference enum types

package com.example.sdk.models;

public class MyJsonData {
    private Az az;

    public MyJsonData(Az az) {
        this.az = az;
    }

    public Az getAz() {
        return this.az;
    }
}