mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 20:47:45 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.459.2
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
package dev.plexapi.sdk.models.operations;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonValue;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
|
||||
/**
|
||||
* IncludeDetails - Whether or not to include details for a section (types, filters, and sorts).
|
||||
@@ -25,4 +27,13 @@ public enum IncludeDetails {
|
||||
public long value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static Optional<IncludeDetails> fromValue(long value) {
|
||||
for (IncludeDetails o: IncludeDetails.values()) {
|
||||
if (Objects.deepEquals(o.value, value)) {
|
||||
return Optional.of(o);
|
||||
}
|
||||
}
|
||||
return Optional.empty();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user