openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// 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;

import com.google.gson.annotations.SerializedName;

/**
 * AZ enum
 */
public enum Az {
    @SerializedName("foo")
    FOO("foo"),
    @SerializedName("bar")
    BAR("bar"),
    @SerializedName("baz")
    BAZ("baz");

    private final String value;

    Az(String value) {
        this.value = value;
    }

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