// Code generated by openapi-nexus. DO NOT EDIT.
//
// Comprehensive Schema Types Example — 1.0.0
// Comprehensive test for all OpenAPI v3.1.2 schema types
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
/**
* Enum of string values
*/
public enum StringEnum {
@SerializedName("active")
ACTIVE("active"),
@SerializedName("inactive")
INACTIVE("inactive"),
@SerializedName("pending")
PENDING("pending");
private final String value;
StringEnum(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}