ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.484.1

This commit is contained in:
speakeasybot
2025-02-06 00:27:45 +00:00
parent f33408b177
commit a4a2130978
59 changed files with 4903 additions and 58 deletions

View File

@@ -0,0 +1,37 @@
/*
* 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<Pending> fromValue(int value) {
for (Pending o: Pending.values()) {
if (Objects.deepEquals(o.value, value)) {
return Optional.of(o);
}
}
return Optional.empty();
}
}