// 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;
}
}