// 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;
/**
* Bar status enum
*/
public enum BarStatus {
@SerializedName("foo")
FOO("foo"),
@SerializedName("bar")
BAR("bar"),
@SerializedName("baz")
BAZ("baz");
private final String value;
BarStatus(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}