// 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;
/**
* Order status enum
*/
public enum OrderStatus {
@SerializedName("placed")
PLACED("placed"),
@SerializedName("approved")
APPROVED("approved"),
@SerializedName("delivered")
DELIVERED("delivered");
private final String value;
OrderStatus(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}