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;

public class FooSpecs {
    @SerializedName("foo_type")
    private FooType fooType;

    public FooSpecs(FooType fooType) {
        this.fooType = fooType;
    }

    public FooType getFooType() {
        return this.fooType;
    }
}