mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-07 12:37:45 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.401.2
This commit is contained in:
@@ -11,17 +11,17 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
*
|
||||
*/
|
||||
public enum IncludeGuids {
|
||||
ZERO(0L),
|
||||
ONE(1L);
|
||||
Disable(0),
|
||||
Enable(1);
|
||||
|
||||
@JsonValue
|
||||
private final long value;
|
||||
private final int value;
|
||||
|
||||
private IncludeGuids(long value) {
|
||||
private IncludeGuids(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public long value() {
|
||||
public int value() {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user