mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-10 12:37:45 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.542.1
This commit is contained in:
@@ -52,7 +52,7 @@ public class PlexAPI {
|
||||
/**
|
||||
* The full address of your Plex Server
|
||||
*/
|
||||
"{protocol}://{ip}:{port}",
|
||||
"https://10.10.10.47:32400",
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@@ -42,8 +42,8 @@ class SDKConfiguration {
|
||||
} };
|
||||
private static final String LANGUAGE = "java";
|
||||
public static final String OPENAPI_DOC_VERSION = "0.0.3";
|
||||
public static final String SDK_VERSION = "0.16.1";
|
||||
public static final String GEN_VERSION = "2.595.4";
|
||||
public static final String SDK_VERSION = "0.16.2";
|
||||
public static final String GEN_VERSION = "2.597.9";
|
||||
private static final String BASE_PACKAGE = "dev.plexapi.sdk";
|
||||
public static final String USER_AGENT =
|
||||
String.format("speakeasy-sdk/%s %s %s %s %s",
|
||||
|
||||
@@ -132,6 +132,9 @@ public class GetAllLibrariesDirectory {
|
||||
@JsonProperty("contentChangedAt")
|
||||
private long contentChangedAt;
|
||||
|
||||
/**
|
||||
* The Plex library visibility setting
|
||||
*/
|
||||
@JsonInclude(Include.NON_ABSENT)
|
||||
@JsonProperty("hidden")
|
||||
private Optional<? extends Hidden> hidden;
|
||||
@@ -376,6 +379,9 @@ public class GetAllLibrariesDirectory {
|
||||
return contentChangedAt;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Plex library visibility setting
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@JsonIgnore
|
||||
public Optional<Hidden> hidden() {
|
||||
@@ -563,12 +569,18 @@ public class GetAllLibrariesDirectory {
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Plex library visibility setting
|
||||
*/
|
||||
public GetAllLibrariesDirectory withHidden(Hidden hidden) {
|
||||
Utils.checkNotNull(hidden, "hidden");
|
||||
this.hidden = Optional.ofNullable(hidden);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Plex library visibility setting
|
||||
*/
|
||||
public GetAllLibrariesDirectory withHidden(Optional<? extends Hidden> hidden) {
|
||||
Utils.checkNotNull(hidden, "hidden");
|
||||
this.hidden = hidden;
|
||||
@@ -887,12 +899,18 @@ public class GetAllLibrariesDirectory {
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Plex library visibility setting
|
||||
*/
|
||||
public Builder hidden(Hidden hidden) {
|
||||
Utils.checkNotNull(hidden, "hidden");
|
||||
this.hidden = Optional.ofNullable(hidden);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Plex library visibility setting
|
||||
*/
|
||||
public Builder hidden(Optional<? extends Hidden> hidden) {
|
||||
Utils.checkNotNull(hidden, "hidden");
|
||||
this.hidden = hidden;
|
||||
|
||||
@@ -10,11 +10,12 @@ import java.util.Optional;
|
||||
/**
|
||||
* Hidden
|
||||
*
|
||||
* <p>UNKNOWN
|
||||
* <p>The Plex library visibility setting
|
||||
*/
|
||||
public enum Hidden {
|
||||
Disable(0),
|
||||
Enable(1);
|
||||
Visible(0),
|
||||
ExcludeHomeScreen(1),
|
||||
ExcludeHomeScreenAndGlobalSearch(2);
|
||||
|
||||
@JsonValue
|
||||
private final int value;
|
||||
|
||||
Reference in New Issue
Block a user