mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 12:47:44 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.129.1
This commit is contained in:
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
# This allows generated code to be indexed correctly
|
||||
*.rb linguist-generated=false
|
||||
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*.gem
|
||||
Gemfile.lock
|
||||
.rbenv-gemsets
|
||||
.DS_Store
|
||||
72
.rubocop.yml
Normal file
72
.rubocop.yml
Normal file
@@ -0,0 +1,72 @@
|
||||
AllCops:
|
||||
Exclude:
|
||||
- Rakefile
|
||||
TargetRubyVersion: "3.0"
|
||||
Metrics:
|
||||
Enabled: false
|
||||
Style/IfInsideElse:
|
||||
Enabled: false
|
||||
Style/GuardClause:
|
||||
Enabled: false
|
||||
Style/ConditionalAssignment:
|
||||
Enabled: false
|
||||
Style/Documentation:
|
||||
Enabled: false
|
||||
Style/NegatedIf:
|
||||
Enabled: false
|
||||
Style/SoleNestedConditional:
|
||||
Enabled: false
|
||||
Style/AccessorGrouping:
|
||||
Enabled: false
|
||||
Layout/EndAlignment:
|
||||
EnforcedStyleAlignWith: start_of_line
|
||||
Enabled: false
|
||||
Layout/LineLength:
|
||||
Enabled: false
|
||||
Lint/EmptyConditionalBody:
|
||||
Enabled: false
|
||||
Lint/MissingSuper:
|
||||
Enabled: false
|
||||
Style/CaseLikeIf:
|
||||
Enabled: false
|
||||
#To eventually re-enable:
|
||||
Layout/EmptyLines:
|
||||
Enabled: false
|
||||
Layout/EmptyLinesAroundMethodBody:
|
||||
Enabled: false
|
||||
Layout/EmptyLineBetweenDefs:
|
||||
Enabled: false
|
||||
Layout/EmptyLineAfterGuardClause:
|
||||
Enabled: false
|
||||
Layout/EmptyLinesAroundModuleBody:
|
||||
Enabled: false
|
||||
Layout/MultilineBlockLayout:
|
||||
Enabled: false
|
||||
Lint/UnusedMethodArgument:
|
||||
Enabled: false
|
||||
Layout/TrailingWhitespace:
|
||||
Enabled: false
|
||||
Style/IfUnlessModifier:
|
||||
Enabled: false
|
||||
Naming/AccessorMethodName:
|
||||
Enabled: false
|
||||
Naming/MethodParameterName:
|
||||
Enabled: false
|
||||
Layout/SpaceInsideHashLiteralBraces:
|
||||
Enabled: false
|
||||
Layout/FirstHashElementIndentation:
|
||||
Enabled: false
|
||||
Style/TrailingCommaInHashLiteral:
|
||||
Enabled: false
|
||||
Style/TrailingCommaInArrayLiteral:
|
||||
Enabled: false
|
||||
Layout/EmptyLinesAroundClassBody:
|
||||
Enabled: false
|
||||
Style/WordArray:
|
||||
Enabled: false
|
||||
Style/RedundantReturn: # https://github.com/rubocop/rubocop/issues/12394
|
||||
Enabled: false
|
||||
Style/RedundantAssignment:
|
||||
Enabled: false
|
||||
Lint/LiteralAsCondition:
|
||||
Enabled: false
|
||||
6
Gemfile
Normal file
6
Gemfile
Normal file
@@ -0,0 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
source 'https://rubygems.org'
|
||||
|
||||
# Specify your gem's dependencies in openapi.gemspec
|
||||
gemspec
|
||||
198
README.md
Normal file
198
README.md
Normal file
@@ -0,0 +1,198 @@
|
||||
# plexruby
|
||||
|
||||
<div align="left">
|
||||
<a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
|
||||
<a href="https://opensource.org/licenses/MIT">
|
||||
<img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
## 🏗 **Welcome to your new SDK!** 🏗
|
||||
|
||||
It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:
|
||||
- [ ] 🛠 Make your SDK feel handcrafted by [customizing it](https://www.speakeasyapi.dev/docs/customize-sdks)
|
||||
- [ ] ♻️ Refine your SDK quickly by iterating locally with the [Speakeasy CLI](https://github.com/speakeasy-api/speakeasy)
|
||||
- [ ] 🎁 Publish your SDK to package managers by [configuring automatic publishing](https://www.speakeasyapi.dev/docs/productionize-sdks/publish-sdks)
|
||||
- [ ] ✨ When ready to productionize, delete this section from the README
|
||||
|
||||
<!-- Start SDK Installation [installation] -->
|
||||
## SDK Installation
|
||||
|
||||
```bash
|
||||
gem install specific_install
|
||||
gem specific_install https://github.com/LukeHagar/plexruby
|
||||
```
|
||||
<!-- End SDK Installation [installation] -->
|
||||
|
||||
<!-- Start SDK Example Usage [usage] -->
|
||||
## SDK Example Usage
|
||||
|
||||
### Example
|
||||
|
||||
```ruby
|
||||
require_relative plexruby
|
||||
|
||||
|
||||
s = OpenApiSDK::PlexAPI.new
|
||||
s.config_security(
|
||||
security=Shared::Security.new(
|
||||
access_token="<YOUR_API_KEY_HERE>",
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
res = s.server.get_server_capabilities()
|
||||
|
||||
if ! res.two_hundred_application_json_object.nil?
|
||||
# handle response
|
||||
end
|
||||
|
||||
```
|
||||
<!-- End SDK Example Usage [usage] -->
|
||||
|
||||
<!-- Start Available Resources and Operations [operations] -->
|
||||
## Available Resources and Operations
|
||||
|
||||
### [Server](docs/sdks/server/README.md)
|
||||
|
||||
* [get_server_capabilities](docs/sdks/server/README.md#get_server_capabilities) - Server Capabilities
|
||||
* [get_server_preferences](docs/sdks/server/README.md#get_server_preferences) - Get Server Preferences
|
||||
* [get_available_clients](docs/sdks/server/README.md#get_available_clients) - Get Available Clients
|
||||
* [get_devices](docs/sdks/server/README.md#get_devices) - Get Devices
|
||||
* [get_server_identity](docs/sdks/server/README.md#get_server_identity) - Get Server Identity
|
||||
* [get_my_plex_account](docs/sdks/server/README.md#get_my_plex_account) - Get MyPlex Account
|
||||
* [get_resized_photo](docs/sdks/server/README.md#get_resized_photo) - Get a Resized Photo
|
||||
* [get_server_list](docs/sdks/server/README.md#get_server_list) - Get Server List
|
||||
|
||||
### [Media](docs/sdks/media/README.md)
|
||||
|
||||
* [mark_played](docs/sdks/media/README.md#mark_played) - Mark Media Played
|
||||
* [mark_unplayed](docs/sdks/media/README.md#mark_unplayed) - Mark Media Unplayed
|
||||
* [update_play_progress](docs/sdks/media/README.md#update_play_progress) - Update Media Play Progress
|
||||
|
||||
### [Activities](docs/sdks/activities/README.md)
|
||||
|
||||
* [get_server_activities](docs/sdks/activities/README.md#get_server_activities) - Get Server Activities
|
||||
* [cancel_server_activities](docs/sdks/activities/README.md#cancel_server_activities) - Cancel Server Activities
|
||||
|
||||
### [Butler](docs/sdks/butler/README.md)
|
||||
|
||||
* [get_butler_tasks](docs/sdks/butler/README.md#get_butler_tasks) - Get Butler tasks
|
||||
* [start_all_tasks](docs/sdks/butler/README.md#start_all_tasks) - Start all Butler tasks
|
||||
* [stop_all_tasks](docs/sdks/butler/README.md#stop_all_tasks) - Stop all Butler tasks
|
||||
* [start_task](docs/sdks/butler/README.md#start_task) - Start a single Butler task
|
||||
* [stop_task](docs/sdks/butler/README.md#stop_task) - Stop a single Butler task
|
||||
|
||||
### [Hubs](docs/sdks/hubs/README.md)
|
||||
|
||||
* [get_global_hubs](docs/sdks/hubs/README.md#get_global_hubs) - Get Global Hubs
|
||||
* [get_library_hubs](docs/sdks/hubs/README.md#get_library_hubs) - Get library specific hubs
|
||||
|
||||
### [Search](docs/sdks/search/README.md)
|
||||
|
||||
* [perform_search](docs/sdks/search/README.md#perform_search) - Perform a search
|
||||
* [perform_voice_search](docs/sdks/search/README.md#perform_voice_search) - Perform a voice search
|
||||
* [get_search_results](docs/sdks/search/README.md#get_search_results) - Get Search Results
|
||||
|
||||
### [Library](docs/sdks/library/README.md)
|
||||
|
||||
* [get_file_hash](docs/sdks/library/README.md#get_file_hash) - Get Hash Value
|
||||
* [get_recently_added](docs/sdks/library/README.md#get_recently_added) - Get Recently Added
|
||||
* [get_libraries](docs/sdks/library/README.md#get_libraries) - Get All Libraries
|
||||
* [get_library](docs/sdks/library/README.md#get_library) - Get Library Details
|
||||
* [delete_library](docs/sdks/library/README.md#delete_library) - Delete Library Section
|
||||
* [get_library_items](docs/sdks/library/README.md#get_library_items) - Get Library Items
|
||||
* [refresh_library](docs/sdks/library/README.md#refresh_library) - Refresh Library
|
||||
* [get_latest_library_items](docs/sdks/library/README.md#get_latest_library_items) - Get Latest Library Items
|
||||
* [get_common_library_items](docs/sdks/library/README.md#get_common_library_items) - Get Common Library Items
|
||||
* [get_metadata](docs/sdks/library/README.md#get_metadata) - Get Items Metadata
|
||||
* [get_metadata_children](docs/sdks/library/README.md#get_metadata_children) - Get Items Children
|
||||
* [get_on_deck](docs/sdks/library/README.md#get_on_deck) - Get On Deck
|
||||
|
||||
### [Log](docs/sdks/log/README.md)
|
||||
|
||||
* [log_line](docs/sdks/log/README.md#log_line) - Logging a single line message.
|
||||
* [log_multi_line](docs/sdks/log/README.md#log_multi_line) - Logging a multi-line message
|
||||
* [enable_paper_trail](docs/sdks/log/README.md#enable_paper_trail) - Enabling Papertrail
|
||||
|
||||
### [Playlists](docs/sdks/playlists/README.md)
|
||||
|
||||
* [create_playlist](docs/sdks/playlists/README.md#create_playlist) - Create a Playlist
|
||||
* [get_playlists](docs/sdks/playlists/README.md#get_playlists) - Get All Playlists
|
||||
* [get_playlist](docs/sdks/playlists/README.md#get_playlist) - Retrieve Playlist
|
||||
* [delete_playlist](docs/sdks/playlists/README.md#delete_playlist) - Deletes a Playlist
|
||||
* [update_playlist](docs/sdks/playlists/README.md#update_playlist) - Update a Playlist
|
||||
* [get_playlist_contents](docs/sdks/playlists/README.md#get_playlist_contents) - Retrieve Playlist Contents
|
||||
* [clear_playlist_contents](docs/sdks/playlists/README.md#clear_playlist_contents) - Delete Playlist Contents
|
||||
* [add_playlist_contents](docs/sdks/playlists/README.md#add_playlist_contents) - Adding to a Playlist
|
||||
* [upload_playlist](docs/sdks/playlists/README.md#upload_playlist) - Upload Playlist
|
||||
|
||||
### [Security](docs/sdks/security/README.md)
|
||||
|
||||
* [get_transient_token](docs/sdks/security/README.md#get_transient_token) - Get a Transient Token.
|
||||
* [get_source_connection_information](docs/sdks/security/README.md#get_source_connection_information) - Get Source Connection Information
|
||||
|
||||
### [Sessions](docs/sdks/sessions/README.md)
|
||||
|
||||
* [get_sessions](docs/sdks/sessions/README.md#get_sessions) - Get Active Sessions
|
||||
* [get_session_history](docs/sdks/sessions/README.md#get_session_history) - Get Session History
|
||||
* [get_transcode_sessions](docs/sdks/sessions/README.md#get_transcode_sessions) - Get Transcode Sessions
|
||||
* [stop_transcode_session](docs/sdks/sessions/README.md#stop_transcode_session) - Stop a Transcode Session
|
||||
|
||||
### [Updater](docs/sdks/updater/README.md)
|
||||
|
||||
* [get_update_status](docs/sdks/updater/README.md#get_update_status) - Querying status of updates
|
||||
* [check_for_updates](docs/sdks/updater/README.md#check_for_updates) - Checking for updates
|
||||
* [apply_updates](docs/sdks/updater/README.md#apply_updates) - Apply Updates
|
||||
|
||||
### [Video](docs/sdks/video/README.md)
|
||||
|
||||
* [start_universal_transcode](docs/sdks/video/README.md#start_universal_transcode) - Start Universal Transcode
|
||||
* [get_timeline](docs/sdks/video/README.md#get_timeline) - Get the timeline for a media item
|
||||
<!-- End Available Resources and Operations [operations] -->
|
||||
|
||||
<!-- Start Server Selection [server] -->
|
||||
## Server Selection
|
||||
|
||||
## Server Selection
|
||||
|
||||
### Select Server by Index
|
||||
|
||||
You can override the default server globally by passing a server index to the `server_idx: int` optional parameter 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}` | `protocol` (default is `http`), `ip` (default is `10.10.10.47`), `port` (default is `32400`) |
|
||||
|
||||
|
||||
|
||||
#### Variables
|
||||
|
||||
Some of the server options above contain variables. If you want to set the values of those variables, the following optional parameters are available when initializing the SDK client instance:
|
||||
* `protocol: ServerProtocol`
|
||||
* `ip: String`
|
||||
* `port: String`
|
||||
|
||||
### Override Server URL Per-Client
|
||||
|
||||
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
|
||||
<!-- End Server Selection [server] -->
|
||||
|
||||
<!-- Placeholder for Future Speakeasy SDK Sections -->
|
||||
|
||||
# Development
|
||||
|
||||
## Maturity
|
||||
|
||||
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
|
||||
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
|
||||
looking for the latest version.
|
||||
|
||||
## Contributions
|
||||
|
||||
While we value open-source contributions to this SDK, this library is generated programmatically.
|
||||
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
|
||||
|
||||
### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
|
||||
9
RELEASES.md
Normal file
9
RELEASES.md
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
## 2024-01-04 00:49:54
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc 0.0.3
|
||||
- Speakeasy CLI 1.129.1 (2.223.3) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [ruby v0.1.0] .
|
||||
21
Rakefile
Normal file
21
Rakefile
Normal file
@@ -0,0 +1,21 @@
|
||||
# typed: true
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'bundler/gem_tasks'
|
||||
require 'minitest/test_task'
|
||||
require 'rubocop/rake_task'
|
||||
|
||||
RuboCop::RakeTask.new
|
||||
|
||||
Minitest::TestTask.create
|
||||
|
||||
# So far default is working - leaving this here for reference.
|
||||
|
||||
# Minitest::TestTask.create(:test) do |t|
|
||||
# t.libs << 'test'
|
||||
# t.libs << 'lib'
|
||||
# t.warning = false
|
||||
# t.test_globs = ['test/**/*_test.rb']
|
||||
# end
|
||||
|
||||
task :default => :test
|
||||
21
USAGE.md
Normal file
21
USAGE.md
Normal file
@@ -0,0 +1,21 @@
|
||||
<!-- Start SDK Example Usage [usage] -->
|
||||
```ruby
|
||||
require_relative plexruby
|
||||
|
||||
|
||||
s = OpenApiSDK::PlexAPI.new
|
||||
s.config_security(
|
||||
security=Shared::Security.new(
|
||||
access_token="<YOUR_API_KEY_HERE>",
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
res = s.server.get_server_capabilities()
|
||||
|
||||
if ! res.two_hundred_application_json_object.nil?
|
||||
# handle response
|
||||
end
|
||||
|
||||
```
|
||||
<!-- 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` | *T.nilable(String)* | :heavy_minus_sign: | N/A |
|
||||
| `type` | *T.nilable(String)* | :heavy_minus_sign: | N/A |
|
||||
| `cancellable` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | N/A |
|
||||
| `user_id` | *T.nilable(Float)* | :heavy_minus_sign: | N/A |
|
||||
| `title` | *T.nilable(String)* | :heavy_minus_sign: | N/A |
|
||||
| `subtitle` | *T.nilable(String)* | :heavy_minus_sign: | N/A |
|
||||
| `progress` | *T.nilable(Float)* | :heavy_minus_sign: | N/A |
|
||||
| `context` | [T.nilable(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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `playlist_id` | *Float* | :heavy_check_mark: | the ID of the playlist | |
|
||||
| `uri` | *String* | :heavy_check_mark: | the content URI for the playlist | library://.. |
|
||||
| `play_queue_id` | *Float* | :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 |
|
||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | [T.nilable(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` | [T.nilable(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 |
|
||||
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(String)* | :heavy_minus_sign: | N/A | BackupDatabase |
|
||||
| `interval` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 3 |
|
||||
| `schedule_randomized` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | N/A | |
|
||||
| `enabled` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | N/A | |
|
||||
| `title` | *T.nilable(String)* | :heavy_minus_sign: | N/A | Backup Database |
|
||||
| `description` | *T.nilable(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 |
|
||||
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
|
||||
| `butler_task` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `activity_uuid` | *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 |
|
||||
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | [T.nilable(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 |
|
||||
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
|
||||
| `playlist_id` | *Float* | :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 |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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 |
|
||||
| -------------------- | -------------------- | -------------------- | -------------------- |
|
||||
| `library_section_id` | *T.nilable(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` | *T.nilable(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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | [Operations::Type](../../models/operations/type.md) | :heavy_check_mark: | type of playlist to create |
|
||||
| `smart` | [Operations::Smart](../../models/operations/smart.md) | :heavy_check_mark: | whether the playlist is smart or not |
|
||||
| `uri` | *T.nilable(String)* | :heavy_minus_sign: | the content URI for the playlist |
|
||||
| `play_queue_id` | *T.nilable(Float)* | :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 |
|
||||
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `section_id` | *Float* | :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 |
|
||||
| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
|
||||
| `playlist_id` | *Float* | :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 |
|
||||
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1 |
|
||||
| `name` | *T.nilable(String)* | :heavy_minus_sign: | N/A | iPhone |
|
||||
| `platform` | *T.nilable(String)* | :heavy_minus_sign: | N/A | iOS |
|
||||
| `client_identifier` | *T.nilable(String)* | :heavy_minus_sign: | N/A | |
|
||||
| `created_at` | *T.nilable(Float)* | :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` | *T.nilable(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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A |
|
||||
| `key` | *T.nilable(String)* | :heavy_minus_sign: | N/A |
|
||||
| `title` | *T.nilable(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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | *T.nilable(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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -0,0 +1,9 @@
|
||||
# GetAvailableClientsMediaContainer
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
|
||||
| `size` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1 |
|
||||
| `server` | T::Array<[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 |
|
||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `response_bodies` | T::Array<[Operations::ResponseBody](../../models/operations/responsebody.md)> | :heavy_minus_sign: | Available Clients |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `two_hundred_application_json_object` | [T.nilable(Operations::GetButlerTasksResponseBody)](../../models/operations/getbutlertasksresponsebody.md) | :heavy_minus_sign: | All butler tasks |
|
||||
| `four_hundred_and_one_application_json_object` | [T.nilable(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 |
|
||||
| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
|
||||
| `butler_tasks` | [T.nilable(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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `section_id` | *Float* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `type` | *Float* | :heavy_check_mark: | item type |
|
||||
| `filter` | *T.nilable(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 |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 151 |
|
||||
| `identifier` | *T.nilable(String)* | :heavy_minus_sign: | N/A | com.plexapp.system.devices |
|
||||
| `device` | T::Array<[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 |
|
||||
| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `two_hundred_application_json_object` | [T.nilable(Operations::GetDevicesResponseBody)](../../models/operations/getdevicesresponsebody.md) | :heavy_minus_sign: | Devices |
|
||||
| `four_hundred_and_one_application_json_object` | [T.nilable(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 |
|
||||
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
|
||||
| `media_container` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | *T.nilable(Float)* | :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 |
|
||||
| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | *T.nilable(Float)* | :heavy_minus_sign: | The number of items to return with each hub. |
|
||||
| `only_transient` | [T.nilable(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 |
|
||||
| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `section_id` | *Float* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `type` | *Float* | :heavy_check_mark: | item type |
|
||||
| `filter` | *T.nilable(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 |
|
||||
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `section_id` | *Float* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `count` | *T.nilable(Float)* | :heavy_minus_sign: | The number of items to return with each hub. |
|
||||
| `only_transient` | [T.nilable(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 |
|
||||
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :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 |
|
||||
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
|
||||
| `section_id` | *Float* | :heavy_check_mark: | the Id of the library to query |
|
||||
| `type` | *T.nilable(Float)* | :heavy_minus_sign: | item type |
|
||||
| `filter` | *T.nilable(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 |
|
||||
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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 |
|
||||
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `section_id` | *Float* | :heavy_check_mark: | the Id of the library to query | 1000 |
|
||||
| `include_details` | [T.nilable(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 |
|
||||
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
|
||||
| `content_type` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
|
||||
| `status_code` | *Integer* | :heavy_check_mark: | HTTP response status code for this operation |
|
||||
| `raw_response` | [Faraday::Response](https://www.rubydoc.info/gems/faraday/Faraday/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
||||
| `object` | [T.nilable(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` | T::Array<[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` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *T.nilable(String)* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *T.nilable(Float)* | :heavy_minus_sign: | N/A | 401 |
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user