// 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 number values
*/
public enum NumberEnum {
@SerializedName("1")
N1(1),
@SerializedName("2")
N2(2),
@SerializedName("3")
N3(3);
private final int value;
NumberEnum(int value) {
this.value = value;
}
public int getValue() {
return this.value;
}
}