mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 12:37:47 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.129.1
This commit is contained in:
12
.gitattributes
vendored
Normal file
12
.gitattributes
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
#
|
||||
# https://help.github.com/articles/dealing-with-line-endings/
|
||||
#
|
||||
# Linux start script should use lf
|
||||
/gradlew text eol=lf
|
||||
|
||||
# These are Windows script files and should use crlf
|
||||
*.bat text eol=crlf
|
||||
|
||||
# This allows generated code to be indexed correctly
|
||||
*.java linguist-generated=false
|
||||
|
||||
14
.gitignore
vendored
14
.gitignore
vendored
@@ -1,15 +1,20 @@
|
||||
# Ignore Gradle project-specific cache directory
|
||||
.gradle
|
||||
# Ignore Gradle build output directory
|
||||
build
|
||||
bin/
|
||||
# Ignore IDE-specific configs
|
||||
.project
|
||||
.settings/
|
||||
.DS_Store
|
||||
# Compiled class file
|
||||
*.class
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
@@ -18,7 +23,6 @@
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
35
README.md
35
README.md
@@ -130,3 +130,38 @@ To see what other functions this SDK is capable of, look inside `src/main/java/4
|
||||
|
||||
License: MIT. See license in LICENSE.
|
||||
|
||||
|
||||
<!-- No SDK Installation -->
|
||||
<!-- No SDK Example Usage -->
|
||||
<!-- No SDK Available Operations -->
|
||||
<!-- Start Server Selection [server] -->
|
||||
## Server Selection
|
||||
|
||||
## Server Selection
|
||||
|
||||
### Select Server by Index
|
||||
|
||||
You can override the default server globally using the `setServerIndex` option when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
|
||||
|
||||
| # | Server | Variables |
|
||||
| - | ------ | --------- |
|
||||
| 0 | `http://10.10.10.47:32400` | None |
|
||||
| 1 | `{protocol}://{ip}:{port}` | `0` (default is `http`), `1` (default is `10.10.10.47`), `2` (default is `32400`) |
|
||||
|
||||
|
||||
|
||||
#### Variables
|
||||
|
||||
Some of the server options above contain variables. If you want to set the values of those variables, the following options are provided for doing so:
|
||||
* `setZero ServerProtocol`
|
||||
* `setOne String`
|
||||
* `setTwo String`
|
||||
|
||||
### Override Server URL Per-Client
|
||||
|
||||
The default server can also be overridden globally using the `setServerURL` option when initializing the SDK client instance. For example:
|
||||
<!-- End Server Selection [server] -->
|
||||
|
||||
<!-- Placeholder for Future Speakeasy SDK Sections -->
|
||||
|
||||
|
||||
|
||||
9
RELEASES.md
Normal file
9
RELEASES.md
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
## 2023-12-27 00:43:30
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc 0.0.3
|
||||
- Speakeasy CLI 1.129.1 (2.223.3) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [java v0.1.0] .
|
||||
30
USAGE.md
Normal file
30
USAGE.md
Normal file
@@ -0,0 +1,30 @@
|
||||
<!-- Start SDK Example Usage [usage] -->
|
||||
```java
|
||||
package hello.world;
|
||||
|
||||
import org.openapis.openapi.SDK;
|
||||
import org.openapis.openapi.models.operations.GetServerCapabilitiesResponse;
|
||||
import org.openapis.openapi.models.shared.Security;
|
||||
|
||||
public class Application {
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
SDK sdk = SDK.builder()
|
||||
.setSecurity(new Security(
|
||||
"string"){{
|
||||
accessToken = "<YOUR_API_KEY_HERE>";
|
||||
}})
|
||||
.build();
|
||||
|
||||
org.openapis.openapi.models.operations.GetServerCapabilitiesResponse res = sdk.server.getServerCapabilities();
|
||||
|
||||
if (res.twoHundredApplicationJsonObject != null) {
|
||||
// handle response
|
||||
}
|
||||
} catch (Exception e) {
|
||||
// handle exception
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
<!-- End SDK Example Usage [usage] -->
|
||||
15
docs/models/operations/Activity.md
Normal file
15
docs/models/operations/Activity.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Activity
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
|
||||
| `uuid` | *String* | :heavy_minus_sign: | N/A |
|
||||
| `type` | *String* | :heavy_minus_sign: | N/A |
|
||||
| `cancellable` | *Boolean* | :heavy_minus_sign: | N/A |
|
||||
| `userID` | *Double* | :heavy_minus_sign: | N/A |
|
||||
| `title` | *String* | :heavy_minus_sign: | N/A |
|
||||
| `subtitle` | *String* | :heavy_minus_sign: | N/A |
|
||||
| `progress` | *Double* | :heavy_minus_sign: | N/A |
|
||||
| `context` | [org.openapis.openapi.models.operations.Context](../../models/operations/Context.md) | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/AddPlaylistContentsErrors.md
Normal file
10
docs/models/operations/AddPlaylistContentsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# AddPlaylistContentsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/AddPlaylistContentsRequest.md
Normal file
10
docs/models/operations/AddPlaylistContentsRequest.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# AddPlaylistContentsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `playlistID` | *Double* | :heavy_check_mark: | the ID of the playlist | |
|
||||
| `uri` | *String* | :heavy_check_mark: | the content URI for the playlist | library://.. |
|
||||
| `playQueueID` | *Double* | :heavy_check_mark: | the play queue to add to a playlist | 123 |
|
||||
11
docs/models/operations/AddPlaylistContentsResponse.md
Normal file
11
docs/models/operations/AddPlaylistContentsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# AddPlaylistContentsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.AddPlaylistContentsResponseBody](../../models/operations/AddPlaylistContentsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/AddPlaylistContentsResponseBody.md
Normal file
10
docs/models/operations/AddPlaylistContentsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# AddPlaylistContentsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.AddPlaylistContentsErrors](../../models/operations/AddPlaylistContentsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/ApplyUpdatesErrors.md
Normal file
10
docs/models/operations/ApplyUpdatesErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# ApplyUpdatesErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
9
docs/models/operations/ApplyUpdatesRequest.md
Normal file
9
docs/models/operations/ApplyUpdatesRequest.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# ApplyUpdatesRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `tonight` | [org.openapis.openapi.models.operations.Tonight](../../models/operations/Tonight.md) | :heavy_minus_sign: | Indicate that you want the update to run during the next Butler execution. Omitting this or setting it to false indicates that the update should install |
|
||||
| `skip` | [org.openapis.openapi.models.operations.Skip](../../models/operations/Skip.md) | :heavy_minus_sign: | Indicate that the latest version should be marked as skipped. The <Release> entry for this version will have the `state` set to `skipped`. |
|
||||
11
docs/models/operations/ApplyUpdatesResponse.md
Normal file
11
docs/models/operations/ApplyUpdatesResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# ApplyUpdatesResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.ApplyUpdatesResponseBody](../../models/operations/ApplyUpdatesResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/ApplyUpdatesResponseBody.md
Normal file
10
docs/models/operations/ApplyUpdatesResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# ApplyUpdatesResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.ApplyUpdatesErrors](../../models/operations/ApplyUpdatesErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
13
docs/models/operations/ButlerTask.md
Normal file
13
docs/models/operations/ButlerTask.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# ButlerTask
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
|
||||
| `name` | *String* | :heavy_minus_sign: | N/A | BackupDatabase |
|
||||
| `interval` | *Double* | :heavy_minus_sign: | N/A | 3 |
|
||||
| `scheduleRandomized` | *Boolean* | :heavy_minus_sign: | N/A | |
|
||||
| `enabled` | *Boolean* | :heavy_minus_sign: | N/A | |
|
||||
| `title` | *String* | :heavy_minus_sign: | N/A | Backup Database |
|
||||
| `description` | *String* | :heavy_minus_sign: | N/A | Create a backup copy of the server's database in the configured backup directory |
|
||||
8
docs/models/operations/ButlerTasks.md
Normal file
8
docs/models/operations/ButlerTasks.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# ButlerTasks
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
|
||||
| `butlerTask` | List<[org.openapis.openapi.models.operations.ButlerTask](../../models/operations/ButlerTask.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/CancelServerActivitiesErrors.md
Normal file
10
docs/models/operations/CancelServerActivitiesErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# CancelServerActivitiesErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
8
docs/models/operations/CancelServerActivitiesRequest.md
Normal file
8
docs/models/operations/CancelServerActivitiesRequest.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# CancelServerActivitiesRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `activityUUID` | *String* | :heavy_check_mark: | The UUID of the activity to cancel. |
|
||||
11
docs/models/operations/CancelServerActivitiesResponse.md
Normal file
11
docs/models/operations/CancelServerActivitiesResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# CancelServerActivitiesResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.CancelServerActivitiesResponseBody](../../models/operations/CancelServerActivitiesResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/CancelServerActivitiesResponseBody.md
Normal file
10
docs/models/operations/CancelServerActivitiesResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# CancelServerActivitiesResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.CancelServerActivitiesErrors](../../models/operations/CancelServerActivitiesErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/CheckForUpdatesErrors.md
Normal file
10
docs/models/operations/CheckForUpdatesErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# CheckForUpdatesErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
8
docs/models/operations/CheckForUpdatesRequest.md
Normal file
8
docs/models/operations/CheckForUpdatesRequest.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# CheckForUpdatesRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
|
||||
| `download` | [org.openapis.openapi.models.operations.Download](../../models/operations/Download.md) | :heavy_minus_sign: | Indicate that you want to start download any updates found. |
|
||||
11
docs/models/operations/CheckForUpdatesResponse.md
Normal file
11
docs/models/operations/CheckForUpdatesResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# CheckForUpdatesResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.CheckForUpdatesResponseBody](../../models/operations/CheckForUpdatesResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/CheckForUpdatesResponseBody.md
Normal file
10
docs/models/operations/CheckForUpdatesResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# CheckForUpdatesResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.CheckForUpdatesErrors](../../models/operations/CheckForUpdatesErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/ClearPlaylistContentsErrors.md
Normal file
10
docs/models/operations/ClearPlaylistContentsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# ClearPlaylistContentsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
8
docs/models/operations/ClearPlaylistContentsRequest.md
Normal file
8
docs/models/operations/ClearPlaylistContentsRequest.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# ClearPlaylistContentsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
|
||||
| `playlistID` | *Double* | :heavy_check_mark: | the ID of the playlist |
|
||||
11
docs/models/operations/ClearPlaylistContentsResponse.md
Normal file
11
docs/models/operations/ClearPlaylistContentsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# ClearPlaylistContentsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.ClearPlaylistContentsResponseBody](../../models/operations/ClearPlaylistContentsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/ClearPlaylistContentsResponseBody.md
Normal file
10
docs/models/operations/ClearPlaylistContentsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# ClearPlaylistContentsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.ClearPlaylistContentsErrors](../../models/operations/ClearPlaylistContentsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
8
docs/models/operations/Context.md
Normal file
8
docs/models/operations/Context.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Context
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------ | ------------------ | ------------------ | ------------------ |
|
||||
| `librarySectionID` | *String* | :heavy_minus_sign: | N/A |
|
||||
8
docs/models/operations/Country.md
Normal file
8
docs/models/operations/Country.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Country
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------ | ------------------------ | ------------------------ | ------------------------ | ------------------------ |
|
||||
| `tag` | *String* | :heavy_minus_sign: | N/A | United States of America |
|
||||
10
docs/models/operations/CreatePlaylistErrors.md
Normal file
10
docs/models/operations/CreatePlaylistErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# CreatePlaylistErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
12
docs/models/operations/CreatePlaylistRequest.md
Normal file
12
docs/models/operations/CreatePlaylistRequest.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# CreatePlaylistRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
|
||||
| `title` | *String* | :heavy_check_mark: | name of the playlist |
|
||||
| `type` | [org.openapis.openapi.models.operations.Type](../../models/operations/Type.md) | :heavy_check_mark: | type of playlist to create |
|
||||
| `smart` | [org.openapis.openapi.models.operations.Smart](../../models/operations/Smart.md) | :heavy_check_mark: | whether the playlist is smart or not |
|
||||
| `uri` | *String* | :heavy_minus_sign: | the content URI for the playlist |
|
||||
| `playQueueID` | *Double* | :heavy_minus_sign: | the play queue to copy to a playlist |
|
||||
11
docs/models/operations/CreatePlaylistResponse.md
Normal file
11
docs/models/operations/CreatePlaylistResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# CreatePlaylistResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.CreatePlaylistResponseBody](../../models/operations/CreatePlaylistResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/CreatePlaylistResponseBody.md
Normal file
10
docs/models/operations/CreatePlaylistResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# CreatePlaylistResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.CreatePlaylistErrors](../../models/operations/CreatePlaylistErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/DeleteLibraryErrors.md
Normal file
10
docs/models/operations/DeleteLibraryErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# DeleteLibraryErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
8
docs/models/operations/DeleteLibraryRequest.md
Normal file
8
docs/models/operations/DeleteLibraryRequest.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# DeleteLibraryRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `sectionId` | *Double* | :heavy_check_mark: | the Id of the library to query | 1000 |
|
||||
11
docs/models/operations/DeleteLibraryResponse.md
Normal file
11
docs/models/operations/DeleteLibraryResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# DeleteLibraryResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.DeleteLibraryResponseBody](../../models/operations/DeleteLibraryResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/DeleteLibraryResponseBody.md
Normal file
10
docs/models/operations/DeleteLibraryResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# DeleteLibraryResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.DeleteLibraryErrors](../../models/operations/DeleteLibraryErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/DeletePlaylistErrors.md
Normal file
10
docs/models/operations/DeletePlaylistErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# DeletePlaylistErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
8
docs/models/operations/DeletePlaylistRequest.md
Normal file
8
docs/models/operations/DeletePlaylistRequest.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# DeletePlaylistRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
|
||||
| `playlistID` | *Double* | :heavy_check_mark: | the ID of the playlist |
|
||||
11
docs/models/operations/DeletePlaylistResponse.md
Normal file
11
docs/models/operations/DeletePlaylistResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# DeletePlaylistResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.DeletePlaylistResponseBody](../../models/operations/DeletePlaylistResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/DeletePlaylistResponseBody.md
Normal file
10
docs/models/operations/DeletePlaylistResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# DeletePlaylistResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.DeletePlaylistErrors](../../models/operations/DeletePlaylistErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
12
docs/models/operations/Device.md
Normal file
12
docs/models/operations/Device.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# Device
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
||||
| `id` | *Double* | :heavy_minus_sign: | N/A | 1 |
|
||||
| `name` | *String* | :heavy_minus_sign: | N/A | iPhone |
|
||||
| `platform` | *String* | :heavy_minus_sign: | N/A | iOS |
|
||||
| `clientIdentifier` | *String* | :heavy_minus_sign: | N/A | |
|
||||
| `createdAt` | *Double* | :heavy_minus_sign: | N/A | 1654131230 |
|
||||
8
docs/models/operations/Director.md
Normal file
8
docs/models/operations/Director.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Director
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
||||
| `tag` | *String* | :heavy_minus_sign: | N/A | Peyton Reed |
|
||||
10
docs/models/operations/Directory.md
Normal file
10
docs/models/operations/Directory.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# Directory
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------ | ------------------ | ------------------ | ------------------ |
|
||||
| `count` | *Double* | :heavy_minus_sign: | N/A |
|
||||
| `key` | *String* | :heavy_minus_sign: | N/A |
|
||||
| `title` | *String* | :heavy_minus_sign: | N/A |
|
||||
11
docs/models/operations/Download.md
Normal file
11
docs/models/operations/Download.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# Download
|
||||
|
||||
Indicate that you want to start download any updates found.
|
||||
|
||||
|
||||
## Values
|
||||
|
||||
| Name | Value |
|
||||
| ------ | ------ |
|
||||
| `ZERO` | 0 |
|
||||
| `ONE` | 1 |
|
||||
10
docs/models/operations/EnablePaperTrailErrors.md
Normal file
10
docs/models/operations/EnablePaperTrailErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# EnablePaperTrailErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
11
docs/models/operations/EnablePaperTrailResponse.md
Normal file
11
docs/models/operations/EnablePaperTrailResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# EnablePaperTrailResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.EnablePaperTrailResponseBody](../../models/operations/EnablePaperTrailResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/EnablePaperTrailResponseBody.md
Normal file
10
docs/models/operations/EnablePaperTrailResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# EnablePaperTrailResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.EnablePaperTrailErrors](../../models/operations/EnablePaperTrailErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/Errors.md
Normal file
10
docs/models/operations/Errors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# Errors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
13
docs/models/operations/Force.md
Normal file
13
docs/models/operations/Force.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# Force
|
||||
|
||||
force overwriting of duplicate playlists. By default, a playlist file uploaded with the same path will overwrite the existing playlist.
|
||||
The `force` argument is used to disable overwriting. If the `force` argument is set to 0, a new playlist will be created suffixed with the date and time that the duplicate was uploaded.
|
||||
|
||||
|
||||
|
||||
## Values
|
||||
|
||||
| Name | Value |
|
||||
| ------ | ------ |
|
||||
| `ZERO` | 0 |
|
||||
| `ONE` | 1 |
|
||||
8
docs/models/operations/Genre.md
Normal file
8
docs/models/operations/Genre.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Genre
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
||||
| `tag` | *String* | :heavy_minus_sign: | N/A | Comedy |
|
||||
10
docs/models/operations/GetAvailableClientsErrors.md
Normal file
10
docs/models/operations/GetAvailableClientsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetAvailableClientsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -0,0 +1,9 @@
|
||||
# GetAvailableClientsMediaContainer
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
|
||||
| `size` | *Double* | :heavy_minus_sign: | N/A | 1 |
|
||||
| `server` | List<[org.openapis.openapi.models.operations.Server](../../models/operations/Server.md)> | :heavy_minus_sign: | N/A | |
|
||||
12
docs/models/operations/GetAvailableClientsResponse.md
Normal file
12
docs/models/operations/GetAvailableClientsResponse.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# GetAvailableClientsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `responseBodies` | List<[org.openapis.openapi.models.operations.ResponseBody](../../models/operations/ResponseBody.md)> | :heavy_minus_sign: | Available Clients |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetAvailableClientsResponseBody](../../models/operations/GetAvailableClientsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetAvailableClientsResponseBody.md
Normal file
10
docs/models/operations/GetAvailableClientsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetAvailableClientsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetAvailableClientsErrors](../../models/operations/GetAvailableClientsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetButlerTasksButlerResponseBody.md
Normal file
10
docs/models/operations/GetButlerTasksButlerResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetButlerTasksButlerResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetButlerTasksErrors](../../models/operations/GetButlerTasksErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetButlerTasksErrors.md
Normal file
10
docs/models/operations/GetButlerTasksErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetButlerTasksErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
12
docs/models/operations/GetButlerTasksResponse.md
Normal file
12
docs/models/operations/GetButlerTasksResponse.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# GetButlerTasksResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `twoHundredApplicationJsonObject` | [org.openapis.openapi.models.operations.GetButlerTasksResponseBody](../../models/operations/GetButlerTasksResponseBody.md) | :heavy_minus_sign: | All butler tasks |
|
||||
| `fourHundredAndOneApplicationJsonObject` | [org.openapis.openapi.models.operations.GetButlerTasksButlerResponseBody](../../models/operations/GetButlerTasksButlerResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetButlerTasksResponseBody.md
Normal file
10
docs/models/operations/GetButlerTasksResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetButlerTasksResponseBody
|
||||
|
||||
All butler tasks
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
|
||||
| `butlerTasks` | [org.openapis.openapi.models.operations.ButlerTasks](../../models/operations/ButlerTasks.md) | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetCommonLibraryItemsErrors.md
Normal file
10
docs/models/operations/GetCommonLibraryItemsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetCommonLibraryItemsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/GetCommonLibraryItemsRequest.md
Normal file
10
docs/models/operations/GetCommonLibraryItemsRequest.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetCommonLibraryItemsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `sectionId` | *Double* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `type` | *Double* | :heavy_check_mark: | item type |
|
||||
| `filter` | *String* | :heavy_minus_sign: | the filter parameter |
|
||||
11
docs/models/operations/GetCommonLibraryItemsResponse.md
Normal file
11
docs/models/operations/GetCommonLibraryItemsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetCommonLibraryItemsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetCommonLibraryItemsResponseBody](../../models/operations/GetCommonLibraryItemsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetCommonLibraryItemsResponseBody.md
Normal file
10
docs/models/operations/GetCommonLibraryItemsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetCommonLibraryItemsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetCommonLibraryItemsErrors](../../models/operations/GetCommonLibraryItemsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetDevicesErrors.md
Normal file
10
docs/models/operations/GetDevicesErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetDevicesErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/GetDevicesMediaContainer.md
Normal file
10
docs/models/operations/GetDevicesMediaContainer.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetDevicesMediaContainer
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
|
||||
| `size` | *Double* | :heavy_minus_sign: | N/A | 151 |
|
||||
| `identifier` | *String* | :heavy_minus_sign: | N/A | com.plexapp.system.devices |
|
||||
| `device` | List<[org.openapis.openapi.models.operations.Device](../../models/operations/Device.md)> | :heavy_minus_sign: | N/A | |
|
||||
12
docs/models/operations/GetDevicesResponse.md
Normal file
12
docs/models/operations/GetDevicesResponse.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# GetDevicesResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `twoHundredApplicationJsonObject` | [org.openapis.openapi.models.operations.GetDevicesResponseBody](../../models/operations/GetDevicesResponseBody.md) | :heavy_minus_sign: | Devices |
|
||||
| `fourHundredAndOneApplicationJsonObject` | [org.openapis.openapi.models.operations.GetDevicesServerResponseBody](../../models/operations/GetDevicesServerResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetDevicesResponseBody.md
Normal file
10
docs/models/operations/GetDevicesResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetDevicesResponseBody
|
||||
|
||||
Devices
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
||||
| `mediaContainer` | [org.openapis.openapi.models.operations.GetDevicesMediaContainer](../../models/operations/GetDevicesMediaContainer.md) | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetDevicesServerResponseBody.md
Normal file
10
docs/models/operations/GetDevicesServerResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetDevicesServerResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetDevicesErrors](../../models/operations/GetDevicesErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetFileHashErrors.md
Normal file
10
docs/models/operations/GetFileHashErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetFileHashErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
9
docs/models/operations/GetFileHashRequest.md
Normal file
9
docs/models/operations/GetFileHashRequest.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# GetFileHashRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
|
||||
| `url` | *String* | :heavy_check_mark: | This is the path to the local file, must be prefixed by `file://` | file://C:\Image.png&type=13 |
|
||||
| `type` | *Double* | :heavy_minus_sign: | Item type | |
|
||||
11
docs/models/operations/GetFileHashResponse.md
Normal file
11
docs/models/operations/GetFileHashResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetFileHashResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetFileHashResponseBody](../../models/operations/GetFileHashResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetFileHashResponseBody.md
Normal file
10
docs/models/operations/GetFileHashResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetFileHashResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetFileHashErrors](../../models/operations/GetFileHashErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetGlobalHubsErrors.md
Normal file
10
docs/models/operations/GetGlobalHubsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetGlobalHubsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
9
docs/models/operations/GetGlobalHubsRequest.md
Normal file
9
docs/models/operations/GetGlobalHubsRequest.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# GetGlobalHubsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `count` | *Double* | :heavy_minus_sign: | The number of items to return with each hub. |
|
||||
| `onlyTransient` | [org.openapis.openapi.models.operations.OnlyTransient](../../models/operations/OnlyTransient.md) | :heavy_minus_sign: | 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). |
|
||||
11
docs/models/operations/GetGlobalHubsResponse.md
Normal file
11
docs/models/operations/GetGlobalHubsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetGlobalHubsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetGlobalHubsResponseBody](../../models/operations/GetGlobalHubsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetGlobalHubsResponseBody.md
Normal file
10
docs/models/operations/GetGlobalHubsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetGlobalHubsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetGlobalHubsErrors](../../models/operations/GetGlobalHubsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetLatestLibraryItemsErrors.md
Normal file
10
docs/models/operations/GetLatestLibraryItemsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLatestLibraryItemsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/GetLatestLibraryItemsRequest.md
Normal file
10
docs/models/operations/GetLatestLibraryItemsRequest.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLatestLibraryItemsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `sectionId` | *Double* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `type` | *Double* | :heavy_check_mark: | item type |
|
||||
| `filter` | *String* | :heavy_minus_sign: | the filter parameter |
|
||||
11
docs/models/operations/GetLatestLibraryItemsResponse.md
Normal file
11
docs/models/operations/GetLatestLibraryItemsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetLatestLibraryItemsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetLatestLibraryItemsResponseBody](../../models/operations/GetLatestLibraryItemsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetLatestLibraryItemsResponseBody.md
Normal file
10
docs/models/operations/GetLatestLibraryItemsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLatestLibraryItemsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetLatestLibraryItemsErrors](../../models/operations/GetLatestLibraryItemsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetLibrariesErrors.md
Normal file
10
docs/models/operations/GetLibrariesErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibrariesErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
11
docs/models/operations/GetLibrariesResponse.md
Normal file
11
docs/models/operations/GetLibrariesResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetLibrariesResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetLibrariesResponseBody](../../models/operations/GetLibrariesResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetLibrariesResponseBody.md
Normal file
10
docs/models/operations/GetLibrariesResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibrariesResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetLibrariesErrors](../../models/operations/GetLibrariesErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetLibraryErrors.md
Normal file
10
docs/models/operations/GetLibraryErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/GetLibraryHubsErrors.md
Normal file
10
docs/models/operations/GetLibraryHubsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryHubsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/GetLibraryHubsRequest.md
Normal file
10
docs/models/operations/GetLibraryHubsRequest.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryHubsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `sectionId` | *Double* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `count` | *Double* | :heavy_minus_sign: | The number of items to return with each hub. |
|
||||
| `onlyTransient` | [org.openapis.openapi.models.operations.QueryParamOnlyTransient](../../models/operations/QueryParamOnlyTransient.md) | :heavy_minus_sign: | 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). |
|
||||
11
docs/models/operations/GetLibraryHubsResponse.md
Normal file
11
docs/models/operations/GetLibraryHubsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetLibraryHubsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetLibraryHubsResponseBody](../../models/operations/GetLibraryHubsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetLibraryHubsResponseBody.md
Normal file
10
docs/models/operations/GetLibraryHubsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryHubsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetLibraryHubsErrors](../../models/operations/GetLibraryHubsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetLibraryItemsErrors.md
Normal file
10
docs/models/operations/GetLibraryItemsErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryItemsErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
10
docs/models/operations/GetLibraryItemsRequest.md
Normal file
10
docs/models/operations/GetLibraryItemsRequest.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryItemsRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `sectionId` | *Double* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `type` | *Double* | :heavy_minus_sign: | item type |
|
||||
| `filter` | *String* | :heavy_minus_sign: | the filter parameter |
|
||||
11
docs/models/operations/GetLibraryItemsResponse.md
Normal file
11
docs/models/operations/GetLibraryItemsResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetLibraryItemsResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetLibraryItemsResponseBody](../../models/operations/GetLibraryItemsResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetLibraryItemsResponseBody.md
Normal file
10
docs/models/operations/GetLibraryItemsResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryItemsResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetLibraryItemsErrors](../../models/operations/GetLibraryItemsErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
9
docs/models/operations/GetLibraryRequest.md
Normal file
9
docs/models/operations/GetLibraryRequest.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# GetLibraryRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `sectionId` | *Double* | :heavy_check_mark: | the Id of the library to query | 1000 |
|
||||
| `includeDetails` | [org.openapis.openapi.models.operations.IncludeDetails](../../models/operations/IncludeDetails.md) | :heavy_minus_sign: | Whether or not to include details for a section (types, filters, and sorts). <br/>Only exists for backwards compatibility, media providers other than the server libraries have it on always.<br/> | |
|
||||
11
docs/models/operations/GetLibraryResponse.md
Normal file
11
docs/models/operations/GetLibraryResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetLibraryResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetLibraryResponseBody](../../models/operations/GetLibraryResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetLibraryResponseBody.md
Normal file
10
docs/models/operations/GetLibraryResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetLibraryResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetLibraryErrors](../../models/operations/GetLibraryErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
10
docs/models/operations/GetMetadataChildrenErrors.md
Normal file
10
docs/models/operations/GetMetadataChildrenErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetMetadataChildrenErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Double* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *String* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Double* | :heavy_minus_sign: | N/A | 401 |
|
||||
8
docs/models/operations/GetMetadataChildrenRequest.md
Normal file
8
docs/models/operations/GetMetadataChildrenRequest.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# GetMetadataChildrenRequest
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
|
||||
| `ratingKey` | *Double* | :heavy_check_mark: | the id of the library item to return the children of. |
|
||||
11
docs/models/operations/GetMetadataChildrenResponse.md
Normal file
11
docs/models/operations/GetMetadataChildrenResponse.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# GetMetadataChildrenResponse
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `statusCode` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `rawResponse` | [HttpResponse<byte[]>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [org.openapis.openapi.models.operations.GetMetadataChildrenResponseBody](../../models/operations/GetMetadataChildrenResponseBody.md) | :heavy_minus_sign: | Unauthorized - Returned if the X-Plex-Token is missing from the header or query. |
|
||||
10
docs/models/operations/GetMetadataChildrenResponseBody.md
Normal file
10
docs/models/operations/GetMetadataChildrenResponseBody.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetMetadataChildrenResponseBody
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `errors` | List<[org.openapis.openapi.models.operations.GetMetadataChildrenErrors](../../models/operations/GetMetadataChildrenErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user