/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ package dev.plexapi.sdk.models.operations; import com.fasterxml.jackson.annotation.JsonValue; import java.util.Objects; import java.util.Optional; /** * Pending - Indicates if the server is pending approval. */ public enum Pending { Disable(0), Enable(1); @JsonValue private final int value; private Pending(int value) { this.value = value; } public int value() { return value; } public static Optional fromValue(int value) { for (Pending o: Pending.values()) { if (Objects.deepEquals(o.value, value)) { return Optional.of(o); } } return Optional.empty(); } }