openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Query Parameter Enum Test — 1.0.0
// Test case for query parameters that reference enum schemas

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

/**
 * Foo status enum
 */
public enum FooStatus {
    @SerializedName("foo")
    FOO("foo"),
    @SerializedName("bar")
    BAR("bar"),
    @SerializedName("baz")
    BAZ("baz");

    private final String value;

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

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