mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-09 20:47:45 +00:00
27 lines
618 B
Java
27 lines
618 B
Java
/*
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
package dev.plexapi.sdk.models.operations;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonValue;
|
|
|
|
/**
|
|
* QueryParamOnlyTransient - Only return hubs which are "transient", meaning those which are prone to changing after media playback or addition (e.g. On Deck, or Recently Added).
|
|
*/
|
|
public enum QueryParamOnlyTransient {
|
|
ZERO(0L),
|
|
ONE(1L);
|
|
|
|
@JsonValue
|
|
private final long value;
|
|
|
|
private QueryParamOnlyTransient(long value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public long value() {
|
|
return value;
|
|
}
|
|
}
|