openapi-nexus 0.1.7

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Petstore API — 1.0.0
// This is a sample Pet Store Server based on the OpenAPI 3.1 specification

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

/**
 * Pet status enum
 */
public enum PetStatus {
    @SerializedName("available")
    AVAILABLE("available"),
    @SerializedName("pending")
    PENDING("pending"),
    @SerializedName("sold")
    SOLD("sold");

    private final String value;

    PetStatus(String value) {
        this.value = value;
    }

    public String getValue() {
        return this.value;
    }
}