mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 12:47:44 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.148.0
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
|
||||||
|
*.py linguist-generated=false
|
||||||
32
.gitignore
vendored
32
.gitignore
vendored
@@ -1,11 +1,12 @@
|
|||||||
|
src/*.egg-info/
|
||||||
|
.python-version
|
||||||
|
.DS_Store
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
|
||||||
# C extensions
|
# C extensions
|
||||||
*.so
|
*.so
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
.Python
|
.Python
|
||||||
build/
|
build/
|
||||||
@@ -25,17 +26,14 @@ share/python-wheels/
|
|||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
MANIFEST
|
MANIFEST
|
||||||
|
|
||||||
# PyInstaller
|
# PyInstaller
|
||||||
# Usually these files are written by a python script from a template
|
# Usually these files are written by a python script from a template
|
||||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
*.manifest
|
*.manifest
|
||||||
*.spec
|
*.spec
|
||||||
|
|
||||||
# Installer logs
|
# Installer logs
|
||||||
pip-log.txt
|
pip-log.txt
|
||||||
pip-delete-this-directory.txt
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
# Unit test / coverage reports
|
# Unit test / coverage reports
|
||||||
htmlcov/
|
htmlcov/
|
||||||
.tox/
|
.tox/
|
||||||
@@ -50,57 +48,45 @@ coverage.xml
|
|||||||
.hypothesis/
|
.hypothesis/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
cover/
|
cover/
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
*.pot
|
*.pot
|
||||||
|
|
||||||
# Django stuff:
|
# Django stuff:
|
||||||
*.log
|
*.log
|
||||||
local_settings.py
|
local_settings.py
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
db.sqlite3-journal
|
db.sqlite3-journal
|
||||||
|
|
||||||
# Flask stuff:
|
# Flask stuff:
|
||||||
instance/
|
instance/
|
||||||
.webassets-cache
|
.webassets-cache
|
||||||
|
|
||||||
# Scrapy stuff:
|
# Scrapy stuff:
|
||||||
.scrapy
|
.scrapy
|
||||||
|
|
||||||
# Sphinx documentation
|
# Sphinx documentation
|
||||||
docs/_build/
|
docs/_build/
|
||||||
|
|
||||||
# PyBuilder
|
# PyBuilder
|
||||||
.pybuilder/
|
.pybuilder/
|
||||||
target/
|
target/
|
||||||
|
|
||||||
# Jupyter Notebook
|
# Jupyter Notebook
|
||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
|
|
||||||
# IPython
|
# IPython
|
||||||
profile_default/
|
profile_default/
|
||||||
ipython_config.py
|
ipython_config.py
|
||||||
|
|
||||||
# pyenv
|
# pyenv
|
||||||
# For a library or package, you might want to ignore these files since the code is
|
# For a library or package, you might want to ignore these files since the code is
|
||||||
# intended to run in multiple environments; otherwise, check them in:
|
# intended to run in multiple environments; otherwise, check them in:
|
||||||
# .python-version
|
# .python-version
|
||||||
|
|
||||||
# pipenv
|
# pipenv
|
||||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
# install all needed dependencies.
|
# install all needed dependencies.
|
||||||
#Pipfile.lock
|
#Pipfile.lock
|
||||||
|
|
||||||
# poetry
|
# poetry
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||||
# commonly ignored for libraries.
|
# commonly ignored for libraries.
|
||||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||||
#poetry.lock
|
#poetry.lock
|
||||||
|
|
||||||
# pdm
|
# pdm
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||||
#pdm.lock
|
#pdm.lock
|
||||||
@@ -108,17 +94,13 @@ ipython_config.py
|
|||||||
# in version control.
|
# in version control.
|
||||||
# https://pdm.fming.dev/#use-with-ide
|
# https://pdm.fming.dev/#use-with-ide
|
||||||
.pdm.toml
|
.pdm.toml
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||||
__pypackages__/
|
__pypackages__/
|
||||||
|
|
||||||
# Celery stuff
|
# Celery stuff
|
||||||
celerybeat-schedule
|
celerybeat-schedule
|
||||||
celerybeat.pid
|
celerybeat.pid
|
||||||
|
|
||||||
# SageMath parsed files
|
# SageMath parsed files
|
||||||
*.sage.py
|
*.sage.py
|
||||||
|
|
||||||
# Environments
|
# Environments
|
||||||
.env
|
.env
|
||||||
.venv
|
.venv
|
||||||
@@ -127,31 +109,23 @@ venv/
|
|||||||
ENV/
|
ENV/
|
||||||
env.bak/
|
env.bak/
|
||||||
venv.bak/
|
venv.bak/
|
||||||
|
|
||||||
# Spyder project settings
|
# Spyder project settings
|
||||||
.spyderproject
|
.spyderproject
|
||||||
.spyproject
|
.spyproject
|
||||||
|
|
||||||
# Rope project settings
|
# Rope project settings
|
||||||
.ropeproject
|
.ropeproject
|
||||||
|
|
||||||
# mkdocs documentation
|
# mkdocs documentation
|
||||||
/site
|
/site
|
||||||
|
|
||||||
# mypy
|
# mypy
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.dmypy.json
|
.dmypy.json
|
||||||
dmypy.json
|
dmypy.json
|
||||||
|
|
||||||
# Pyre type checker
|
# Pyre type checker
|
||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
# pytype static type analyzer
|
# pytype static type analyzer
|
||||||
.pytype/
|
.pytype/
|
||||||
|
|
||||||
# Cython debug symbols
|
# Cython debug symbols
|
||||||
cython_debug/
|
cython_debug/
|
||||||
|
|
||||||
# PyCharm
|
# PyCharm
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
|
|||||||
473
.speakeasy/gen.lock
Executable file
473
.speakeasy/gen.lock
Executable file
@@ -0,0 +1,473 @@
|
|||||||
|
lockVersion: 2.0.0
|
||||||
|
id: d8ad7e3e-a793-4d4e-93df-57880b52704c
|
||||||
|
management:
|
||||||
|
docChecksum: 1e8e82037a237e1d1467721fbd2c7ab0
|
||||||
|
docVersion: 0.0.3
|
||||||
|
speakeasyVersion: internal
|
||||||
|
generationVersion: 2.237.3
|
||||||
|
releaseVersion: 0.0.1
|
||||||
|
configChecksum: f687023514121ee9745da4d16236cc9a
|
||||||
|
repoURL: https://github.com/LukeHagar/plexpy.git
|
||||||
|
repoSubDirectory: .
|
||||||
|
installationURL: https://github.com/LukeHagar/plexpy.git
|
||||||
|
published: true
|
||||||
|
features:
|
||||||
|
python:
|
||||||
|
constsAndDefaults: 0.1.2
|
||||||
|
core: 4.4.2
|
||||||
|
flattening: 2.81.1
|
||||||
|
globalSecurity: 2.83.2
|
||||||
|
globalServerURLs: 2.82.1
|
||||||
|
nameOverrides: 2.81.1
|
||||||
|
unions: 2.82.5
|
||||||
|
generatedFiles:
|
||||||
|
- src/plex_api/sdkconfiguration.py
|
||||||
|
- src/plex_api/server.py
|
||||||
|
- src/plex_api/media.py
|
||||||
|
- src/plex_api/activities.py
|
||||||
|
- src/plex_api/butler.py
|
||||||
|
- src/plex_api/hubs.py
|
||||||
|
- src/plex_api/search.py
|
||||||
|
- src/plex_api/library.py
|
||||||
|
- src/plex_api/log.py
|
||||||
|
- src/plex_api/playlists.py
|
||||||
|
- src/plex_api/security.py
|
||||||
|
- src/plex_api/sessions.py
|
||||||
|
- src/plex_api/updater.py
|
||||||
|
- src/plex_api/video.py
|
||||||
|
- src/plex_api/sdk.py
|
||||||
|
- pylintrc
|
||||||
|
- setup.py
|
||||||
|
- src/plex_api/__init__.py
|
||||||
|
- src/plex_api/utils/__init__.py
|
||||||
|
- src/plex_api/utils/retries.py
|
||||||
|
- src/plex_api/utils/utils.py
|
||||||
|
- src/plex_api/models/errors/sdkerror.py
|
||||||
|
- tests/helpers.py
|
||||||
|
- src/plex_api/models/operations/getservercapabilities.py
|
||||||
|
- src/plex_api/models/operations/getserverpreferences.py
|
||||||
|
- src/plex_api/models/operations/getavailableclients.py
|
||||||
|
- src/plex_api/models/operations/getdevices.py
|
||||||
|
- src/plex_api/models/operations/getserveridentity.py
|
||||||
|
- src/plex_api/models/operations/getmyplexaccount.py
|
||||||
|
- src/plex_api/models/operations/getresizedphoto.py
|
||||||
|
- src/plex_api/models/operations/getserverlist.py
|
||||||
|
- src/plex_api/models/operations/markplayed.py
|
||||||
|
- src/plex_api/models/operations/markunplayed.py
|
||||||
|
- src/plex_api/models/operations/updateplayprogress.py
|
||||||
|
- src/plex_api/models/operations/getserveractivities.py
|
||||||
|
- src/plex_api/models/operations/cancelserveractivities.py
|
||||||
|
- src/plex_api/models/operations/getbutlertasks.py
|
||||||
|
- src/plex_api/models/operations/startalltasks.py
|
||||||
|
- src/plex_api/models/operations/stopalltasks.py
|
||||||
|
- src/plex_api/models/operations/starttask.py
|
||||||
|
- src/plex_api/models/operations/stoptask.py
|
||||||
|
- src/plex_api/models/operations/getglobalhubs.py
|
||||||
|
- src/plex_api/models/operations/getlibraryhubs.py
|
||||||
|
- src/plex_api/models/operations/performsearch.py
|
||||||
|
- src/plex_api/models/operations/performvoicesearch.py
|
||||||
|
- src/plex_api/models/operations/getsearchresults.py
|
||||||
|
- src/plex_api/models/operations/getfilehash.py
|
||||||
|
- src/plex_api/models/operations/getrecentlyadded.py
|
||||||
|
- src/plex_api/models/operations/getlibraries.py
|
||||||
|
- src/plex_api/models/operations/getlibrary.py
|
||||||
|
- src/plex_api/models/operations/deletelibrary.py
|
||||||
|
- src/plex_api/models/operations/getlibraryitems.py
|
||||||
|
- src/plex_api/models/operations/refreshlibrary.py
|
||||||
|
- src/plex_api/models/operations/getlatestlibraryitems.py
|
||||||
|
- src/plex_api/models/operations/getcommonlibraryitems.py
|
||||||
|
- src/plex_api/models/operations/getmetadata.py
|
||||||
|
- src/plex_api/models/operations/getmetadatachildren.py
|
||||||
|
- src/plex_api/models/operations/getondeck.py
|
||||||
|
- src/plex_api/models/operations/logline.py
|
||||||
|
- src/plex_api/models/operations/logmultiline.py
|
||||||
|
- src/plex_api/models/operations/enablepapertrail.py
|
||||||
|
- src/plex_api/models/operations/createplaylist.py
|
||||||
|
- src/plex_api/models/operations/getplaylists.py
|
||||||
|
- src/plex_api/models/operations/getplaylist.py
|
||||||
|
- src/plex_api/models/operations/deleteplaylist.py
|
||||||
|
- src/plex_api/models/operations/updateplaylist.py
|
||||||
|
- src/plex_api/models/operations/getplaylistcontents.py
|
||||||
|
- src/plex_api/models/operations/clearplaylistcontents.py
|
||||||
|
- src/plex_api/models/operations/addplaylistcontents.py
|
||||||
|
- src/plex_api/models/operations/uploadplaylist.py
|
||||||
|
- src/plex_api/models/operations/gettransienttoken.py
|
||||||
|
- src/plex_api/models/operations/getsourceconnectioninformation.py
|
||||||
|
- src/plex_api/models/operations/getsessions.py
|
||||||
|
- src/plex_api/models/operations/getsessionhistory.py
|
||||||
|
- src/plex_api/models/operations/gettranscodesessions.py
|
||||||
|
- src/plex_api/models/operations/stoptranscodesession.py
|
||||||
|
- src/plex_api/models/operations/getupdatestatus.py
|
||||||
|
- src/plex_api/models/operations/checkforupdates.py
|
||||||
|
- src/plex_api/models/operations/applyupdates.py
|
||||||
|
- src/plex_api/models/operations/startuniversaltranscode.py
|
||||||
|
- src/plex_api/models/operations/gettimeline.py
|
||||||
|
- src/plex_api/models/errors/getservercapabilities.py
|
||||||
|
- src/plex_api/models/errors/getserverpreferences.py
|
||||||
|
- src/plex_api/models/errors/getavailableclients.py
|
||||||
|
- src/plex_api/models/errors/getdevices.py
|
||||||
|
- src/plex_api/models/errors/getserveridentity.py
|
||||||
|
- src/plex_api/models/errors/getmyplexaccount.py
|
||||||
|
- src/plex_api/models/errors/getresizedphoto.py
|
||||||
|
- src/plex_api/models/errors/getserverlist.py
|
||||||
|
- src/plex_api/models/errors/markplayed.py
|
||||||
|
- src/plex_api/models/errors/markunplayed.py
|
||||||
|
- src/plex_api/models/errors/updateplayprogress.py
|
||||||
|
- src/plex_api/models/errors/getserveractivities.py
|
||||||
|
- src/plex_api/models/errors/cancelserveractivities.py
|
||||||
|
- src/plex_api/models/errors/getbutlertasks.py
|
||||||
|
- src/plex_api/models/errors/startalltasks.py
|
||||||
|
- src/plex_api/models/errors/stopalltasks.py
|
||||||
|
- src/plex_api/models/errors/starttask.py
|
||||||
|
- src/plex_api/models/errors/stoptask.py
|
||||||
|
- src/plex_api/models/errors/getglobalhubs.py
|
||||||
|
- src/plex_api/models/errors/getlibraryhubs.py
|
||||||
|
- src/plex_api/models/errors/performsearch.py
|
||||||
|
- src/plex_api/models/errors/performvoicesearch.py
|
||||||
|
- src/plex_api/models/errors/getsearchresults.py
|
||||||
|
- src/plex_api/models/errors/getfilehash.py
|
||||||
|
- src/plex_api/models/errors/getrecentlyadded.py
|
||||||
|
- src/plex_api/models/errors/getlibraries.py
|
||||||
|
- src/plex_api/models/errors/getlibrary.py
|
||||||
|
- src/plex_api/models/errors/deletelibrary.py
|
||||||
|
- src/plex_api/models/errors/getlibraryitems.py
|
||||||
|
- src/plex_api/models/errors/refreshlibrary.py
|
||||||
|
- src/plex_api/models/errors/getlatestlibraryitems.py
|
||||||
|
- src/plex_api/models/errors/getcommonlibraryitems.py
|
||||||
|
- src/plex_api/models/errors/getmetadata.py
|
||||||
|
- src/plex_api/models/errors/getmetadatachildren.py
|
||||||
|
- src/plex_api/models/errors/getondeck.py
|
||||||
|
- src/plex_api/models/errors/logline.py
|
||||||
|
- src/plex_api/models/errors/logmultiline.py
|
||||||
|
- src/plex_api/models/errors/enablepapertrail.py
|
||||||
|
- src/plex_api/models/errors/createplaylist.py
|
||||||
|
- src/plex_api/models/errors/getplaylists.py
|
||||||
|
- src/plex_api/models/errors/getplaylist.py
|
||||||
|
- src/plex_api/models/errors/deleteplaylist.py
|
||||||
|
- src/plex_api/models/errors/updateplaylist.py
|
||||||
|
- src/plex_api/models/errors/getplaylistcontents.py
|
||||||
|
- src/plex_api/models/errors/clearplaylistcontents.py
|
||||||
|
- src/plex_api/models/errors/addplaylistcontents.py
|
||||||
|
- src/plex_api/models/errors/uploadplaylist.py
|
||||||
|
- src/plex_api/models/errors/gettransienttoken.py
|
||||||
|
- src/plex_api/models/errors/getsourceconnectioninformation.py
|
||||||
|
- src/plex_api/models/errors/getsessions.py
|
||||||
|
- src/plex_api/models/errors/getsessionhistory.py
|
||||||
|
- src/plex_api/models/errors/gettranscodesessions.py
|
||||||
|
- src/plex_api/models/errors/stoptranscodesession.py
|
||||||
|
- src/plex_api/models/errors/getupdatestatus.py
|
||||||
|
- src/plex_api/models/errors/checkforupdates.py
|
||||||
|
- src/plex_api/models/errors/applyupdates.py
|
||||||
|
- src/plex_api/models/errors/startuniversaltranscode.py
|
||||||
|
- src/plex_api/models/errors/gettimeline.py
|
||||||
|
- src/plex_api/models/components/security.py
|
||||||
|
- src/plex_api/models/__init__.py
|
||||||
|
- src/plex_api/models/errors/__init__.py
|
||||||
|
- src/plex_api/models/operations/__init__.py
|
||||||
|
- src/plex_api/models/components/__init__.py
|
||||||
|
- docs/models/operations/directory.md
|
||||||
|
- docs/models/operations/mediacontainer.md
|
||||||
|
- docs/models/operations/getservercapabilitiesresponsebody.md
|
||||||
|
- docs/models/operations/getservercapabilitiesresponse.md
|
||||||
|
- docs/models/operations/two.md
|
||||||
|
- docs/models/operations/one.md
|
||||||
|
- docs/models/operations/setting.md
|
||||||
|
- docs/models/operations/getserverpreferencesmediacontainer.md
|
||||||
|
- docs/models/operations/getserverpreferencesresponsebody.md
|
||||||
|
- docs/models/operations/getserverpreferencesresponse.md
|
||||||
|
- docs/models/operations/server.md
|
||||||
|
- docs/models/operations/getavailableclientsmediacontainer.md
|
||||||
|
- docs/models/operations/responsebody.md
|
||||||
|
- docs/models/operations/getavailableclientsresponse.md
|
||||||
|
- docs/models/operations/device.md
|
||||||
|
- docs/models/operations/getdevicesmediacontainer.md
|
||||||
|
- docs/models/operations/getdevicesresponsebody.md
|
||||||
|
- docs/models/operations/getdevicesresponse.md
|
||||||
|
- docs/models/operations/getserveridentitymediacontainer.md
|
||||||
|
- docs/models/operations/getserveridentityresponsebody.md
|
||||||
|
- docs/models/operations/getserveridentityresponse.md
|
||||||
|
- docs/models/operations/myplex.md
|
||||||
|
- docs/models/operations/getmyplexaccountresponsebody.md
|
||||||
|
- docs/models/operations/getmyplexaccountresponse.md
|
||||||
|
- docs/models/operations/minsize.md
|
||||||
|
- docs/models/operations/upscale.md
|
||||||
|
- docs/models/operations/getresizedphotorequest.md
|
||||||
|
- docs/models/operations/getresizedphotoresponse.md
|
||||||
|
- docs/models/operations/getserverlistserver.md
|
||||||
|
- docs/models/operations/getserverlistmediacontainer.md
|
||||||
|
- docs/models/operations/getserverlistresponsebody.md
|
||||||
|
- docs/models/operations/getserverlistresponse.md
|
||||||
|
- docs/models/operations/markplayedrequest.md
|
||||||
|
- docs/models/operations/markplayedresponse.md
|
||||||
|
- docs/models/operations/markunplayedrequest.md
|
||||||
|
- docs/models/operations/markunplayedresponse.md
|
||||||
|
- docs/models/operations/updateplayprogressrequest.md
|
||||||
|
- docs/models/operations/updateplayprogressresponse.md
|
||||||
|
- docs/models/operations/context.md
|
||||||
|
- docs/models/operations/activity.md
|
||||||
|
- docs/models/operations/getserveractivitiesmediacontainer.md
|
||||||
|
- docs/models/operations/getserveractivitiesresponsebody.md
|
||||||
|
- docs/models/operations/getserveractivitiesresponse.md
|
||||||
|
- docs/models/operations/cancelserveractivitiesrequest.md
|
||||||
|
- docs/models/operations/cancelserveractivitiesresponse.md
|
||||||
|
- docs/models/operations/butlertask.md
|
||||||
|
- docs/models/operations/butlertasks.md
|
||||||
|
- docs/models/operations/getbutlertasksresponsebody.md
|
||||||
|
- docs/models/operations/getbutlertasksresponse.md
|
||||||
|
- docs/models/operations/startalltasksresponse.md
|
||||||
|
- docs/models/operations/stopalltasksresponse.md
|
||||||
|
- docs/models/operations/taskname.md
|
||||||
|
- docs/models/operations/starttaskrequest.md
|
||||||
|
- docs/models/operations/starttaskresponse.md
|
||||||
|
- docs/models/operations/pathparamtaskname.md
|
||||||
|
- docs/models/operations/stoptaskrequest.md
|
||||||
|
- docs/models/operations/stoptaskresponse.md
|
||||||
|
- docs/models/operations/onlytransient.md
|
||||||
|
- docs/models/operations/getglobalhubsrequest.md
|
||||||
|
- docs/models/operations/getglobalhubsresponse.md
|
||||||
|
- docs/models/operations/queryparamonlytransient.md
|
||||||
|
- docs/models/operations/getlibraryhubsrequest.md
|
||||||
|
- docs/models/operations/getlibraryhubsresponse.md
|
||||||
|
- docs/models/operations/performsearchrequest.md
|
||||||
|
- docs/models/operations/performsearchresponse.md
|
||||||
|
- docs/models/operations/performvoicesearchrequest.md
|
||||||
|
- docs/models/operations/performvoicesearchresponse.md
|
||||||
|
- docs/models/operations/getsearchresultsrequest.md
|
||||||
|
- docs/models/operations/getsearchresultspart.md
|
||||||
|
- docs/models/operations/getsearchresultsmedia.md
|
||||||
|
- docs/models/operations/getsearchresultsgenre.md
|
||||||
|
- docs/models/operations/getsearchresultsdirector.md
|
||||||
|
- docs/models/operations/getsearchresultswriter.md
|
||||||
|
- docs/models/operations/getsearchresultscountry.md
|
||||||
|
- docs/models/operations/getsearchresultsrole.md
|
||||||
|
- docs/models/operations/getsearchresultsmetadata.md
|
||||||
|
- docs/models/operations/provider.md
|
||||||
|
- docs/models/operations/getsearchresultsmediacontainer.md
|
||||||
|
- docs/models/operations/getsearchresultsresponsebody.md
|
||||||
|
- docs/models/operations/getsearchresultsresponse.md
|
||||||
|
- docs/models/operations/getfilehashrequest.md
|
||||||
|
- docs/models/operations/getfilehashresponse.md
|
||||||
|
- docs/models/operations/part.md
|
||||||
|
- docs/models/operations/media.md
|
||||||
|
- docs/models/operations/genre.md
|
||||||
|
- docs/models/operations/director.md
|
||||||
|
- docs/models/operations/writer.md
|
||||||
|
- docs/models/operations/country.md
|
||||||
|
- docs/models/operations/role.md
|
||||||
|
- docs/models/operations/metadata.md
|
||||||
|
- docs/models/operations/getrecentlyaddedmediacontainer.md
|
||||||
|
- docs/models/operations/getrecentlyaddedresponsebody.md
|
||||||
|
- docs/models/operations/getrecentlyaddedresponse.md
|
||||||
|
- docs/models/operations/location.md
|
||||||
|
- docs/models/operations/getlibrariesdirectory.md
|
||||||
|
- docs/models/operations/getlibrariesmediacontainer.md
|
||||||
|
- docs/models/operations/getlibrariesresponsebody.md
|
||||||
|
- docs/models/operations/getlibrariesresponse.md
|
||||||
|
- docs/models/operations/includedetails.md
|
||||||
|
- docs/models/operations/getlibraryrequest.md
|
||||||
|
- docs/models/operations/getlibrarydirectory.md
|
||||||
|
- docs/models/operations/filter_.md
|
||||||
|
- docs/models/operations/sort.md
|
||||||
|
- docs/models/operations/field.md
|
||||||
|
- docs/models/operations/getlibrarytype.md
|
||||||
|
- docs/models/operations/operator.md
|
||||||
|
- docs/models/operations/fieldtype.md
|
||||||
|
- docs/models/operations/getlibrarymediacontainer.md
|
||||||
|
- docs/models/operations/getlibraryresponsebody.md
|
||||||
|
- docs/models/operations/getlibraryresponse.md
|
||||||
|
- docs/models/operations/deletelibraryrequest.md
|
||||||
|
- docs/models/operations/deletelibraryresponse.md
|
||||||
|
- docs/models/operations/getlibraryitemsrequest.md
|
||||||
|
- docs/models/operations/getlibraryitemsresponse.md
|
||||||
|
- docs/models/operations/refreshlibraryrequest.md
|
||||||
|
- docs/models/operations/refreshlibraryresponse.md
|
||||||
|
- docs/models/operations/getlatestlibraryitemsrequest.md
|
||||||
|
- docs/models/operations/getlatestlibraryitemsresponse.md
|
||||||
|
- docs/models/operations/getcommonlibraryitemsrequest.md
|
||||||
|
- docs/models/operations/getcommonlibraryitemsresponse.md
|
||||||
|
- docs/models/operations/getmetadatarequest.md
|
||||||
|
- docs/models/operations/getmetadataresponse.md
|
||||||
|
- docs/models/operations/getmetadatachildrenrequest.md
|
||||||
|
- docs/models/operations/getmetadatachildrenresponse.md
|
||||||
|
- docs/models/operations/stream.md
|
||||||
|
- docs/models/operations/getondeckpart.md
|
||||||
|
- docs/models/operations/getondeckmedia.md
|
||||||
|
- docs/models/operations/guids.md
|
||||||
|
- docs/models/operations/getondeckmetadata.md
|
||||||
|
- docs/models/operations/getondeckmediacontainer.md
|
||||||
|
- docs/models/operations/getondeckresponsebody.md
|
||||||
|
- docs/models/operations/getondeckresponse.md
|
||||||
|
- docs/models/operations/level.md
|
||||||
|
- docs/models/operations/loglinerequest.md
|
||||||
|
- docs/models/operations/loglineresponse.md
|
||||||
|
- docs/models/operations/logmultilineresponse.md
|
||||||
|
- docs/models/operations/enablepapertrailresponse.md
|
||||||
|
- docs/models/operations/type.md
|
||||||
|
- docs/models/operations/smart.md
|
||||||
|
- docs/models/operations/createplaylistrequest.md
|
||||||
|
- docs/models/operations/createplaylistresponse.md
|
||||||
|
- docs/models/operations/playlisttype.md
|
||||||
|
- docs/models/operations/queryparamsmart.md
|
||||||
|
- docs/models/operations/getplaylistsrequest.md
|
||||||
|
- docs/models/operations/getplaylistsresponse.md
|
||||||
|
- docs/models/operations/getplaylistrequest.md
|
||||||
|
- docs/models/operations/getplaylistresponse.md
|
||||||
|
- docs/models/operations/deleteplaylistrequest.md
|
||||||
|
- docs/models/operations/deleteplaylistresponse.md
|
||||||
|
- docs/models/operations/updateplaylistrequest.md
|
||||||
|
- docs/models/operations/updateplaylistresponse.md
|
||||||
|
- docs/models/operations/getplaylistcontentsrequest.md
|
||||||
|
- docs/models/operations/getplaylistcontentsresponse.md
|
||||||
|
- docs/models/operations/clearplaylistcontentsrequest.md
|
||||||
|
- docs/models/operations/clearplaylistcontentsresponse.md
|
||||||
|
- docs/models/operations/addplaylistcontentsrequest.md
|
||||||
|
- docs/models/operations/addplaylistcontentsresponse.md
|
||||||
|
- docs/models/operations/force.md
|
||||||
|
- docs/models/operations/uploadplaylistrequest.md
|
||||||
|
- docs/models/operations/uploadplaylistresponse.md
|
||||||
|
- docs/models/operations/queryparamtype.md
|
||||||
|
- docs/models/operations/scope.md
|
||||||
|
- docs/models/operations/gettransienttokenrequest.md
|
||||||
|
- docs/models/operations/gettransienttokenresponse.md
|
||||||
|
- docs/models/operations/getsourceconnectioninformationrequest.md
|
||||||
|
- docs/models/operations/getsourceconnectioninformationresponse.md
|
||||||
|
- docs/models/operations/getsessionsresponse.md
|
||||||
|
- docs/models/operations/getsessionhistoryresponse.md
|
||||||
|
- docs/models/operations/transcodesession.md
|
||||||
|
- docs/models/operations/gettranscodesessionsmediacontainer.md
|
||||||
|
- docs/models/operations/gettranscodesessionsresponsebody.md
|
||||||
|
- docs/models/operations/gettranscodesessionsresponse.md
|
||||||
|
- docs/models/operations/stoptranscodesessionrequest.md
|
||||||
|
- docs/models/operations/stoptranscodesessionresponse.md
|
||||||
|
- docs/models/operations/getupdatestatusresponse.md
|
||||||
|
- docs/models/operations/download.md
|
||||||
|
- docs/models/operations/checkforupdatesrequest.md
|
||||||
|
- docs/models/operations/checkforupdatesresponse.md
|
||||||
|
- docs/models/operations/tonight.md
|
||||||
|
- docs/models/operations/skip.md
|
||||||
|
- docs/models/operations/applyupdatesrequest.md
|
||||||
|
- docs/models/operations/applyupdatesresponse.md
|
||||||
|
- docs/models/operations/startuniversaltranscoderequest.md
|
||||||
|
- docs/models/operations/startuniversaltranscoderesponse.md
|
||||||
|
- docs/models/operations/state.md
|
||||||
|
- docs/models/operations/gettimelinerequest.md
|
||||||
|
- docs/models/operations/gettimelineresponse.md
|
||||||
|
- docs/models/errors/errors.md
|
||||||
|
- docs/models/errors/getservercapabilitiesresponsebody.md
|
||||||
|
- docs/models/errors/getserverpreferenceserrors.md
|
||||||
|
- docs/models/errors/getserverpreferencesresponsebody.md
|
||||||
|
- docs/models/errors/getavailableclientserrors.md
|
||||||
|
- docs/models/errors/getavailableclientsresponsebody.md
|
||||||
|
- docs/models/errors/getdeviceserrors.md
|
||||||
|
- docs/models/errors/getdevicesresponsebody.md
|
||||||
|
- docs/models/errors/getserveridentityerrors.md
|
||||||
|
- docs/models/errors/getserveridentityresponsebody.md
|
||||||
|
- docs/models/errors/getmyplexaccounterrors.md
|
||||||
|
- docs/models/errors/getmyplexaccountresponsebody.md
|
||||||
|
- docs/models/errors/getresizedphotoerrors.md
|
||||||
|
- docs/models/errors/getresizedphotoresponsebody.md
|
||||||
|
- docs/models/errors/getserverlisterrors.md
|
||||||
|
- docs/models/errors/getserverlistresponsebody.md
|
||||||
|
- docs/models/errors/markplayederrors.md
|
||||||
|
- docs/models/errors/markplayedresponsebody.md
|
||||||
|
- docs/models/errors/markunplayederrors.md
|
||||||
|
- docs/models/errors/markunplayedresponsebody.md
|
||||||
|
- docs/models/errors/updateplayprogresserrors.md
|
||||||
|
- docs/models/errors/updateplayprogressresponsebody.md
|
||||||
|
- docs/models/errors/getserveractivitieserrors.md
|
||||||
|
- docs/models/errors/getserveractivitiesresponsebody.md
|
||||||
|
- docs/models/errors/cancelserveractivitieserrors.md
|
||||||
|
- docs/models/errors/cancelserveractivitiesresponsebody.md
|
||||||
|
- docs/models/errors/getbutlertaskserrors.md
|
||||||
|
- docs/models/errors/getbutlertasksresponsebody.md
|
||||||
|
- docs/models/errors/startalltaskserrors.md
|
||||||
|
- docs/models/errors/startalltasksresponsebody.md
|
||||||
|
- docs/models/errors/stopalltaskserrors.md
|
||||||
|
- docs/models/errors/stopalltasksresponsebody.md
|
||||||
|
- docs/models/errors/starttaskerrors.md
|
||||||
|
- docs/models/errors/starttaskresponsebody.md
|
||||||
|
- docs/models/errors/stoptaskerrors.md
|
||||||
|
- docs/models/errors/stoptaskresponsebody.md
|
||||||
|
- docs/models/errors/getglobalhubserrors.md
|
||||||
|
- docs/models/errors/getglobalhubsresponsebody.md
|
||||||
|
- docs/models/errors/getlibraryhubserrors.md
|
||||||
|
- docs/models/errors/getlibraryhubsresponsebody.md
|
||||||
|
- docs/models/errors/performsearcherrors.md
|
||||||
|
- docs/models/errors/performsearchresponsebody.md
|
||||||
|
- docs/models/errors/performvoicesearcherrors.md
|
||||||
|
- docs/models/errors/performvoicesearchresponsebody.md
|
||||||
|
- docs/models/errors/getsearchresultserrors.md
|
||||||
|
- docs/models/errors/getsearchresultsresponsebody.md
|
||||||
|
- docs/models/errors/getfilehasherrors.md
|
||||||
|
- docs/models/errors/getfilehashresponsebody.md
|
||||||
|
- docs/models/errors/getrecentlyaddederrors.md
|
||||||
|
- docs/models/errors/getrecentlyaddedresponsebody.md
|
||||||
|
- docs/models/errors/getlibrarieserrors.md
|
||||||
|
- docs/models/errors/getlibrariesresponsebody.md
|
||||||
|
- docs/models/errors/getlibraryerrors.md
|
||||||
|
- docs/models/errors/getlibraryresponsebody.md
|
||||||
|
- docs/models/errors/deletelibraryerrors.md
|
||||||
|
- docs/models/errors/deletelibraryresponsebody.md
|
||||||
|
- docs/models/errors/getlibraryitemserrors.md
|
||||||
|
- docs/models/errors/getlibraryitemsresponsebody.md
|
||||||
|
- docs/models/errors/refreshlibraryerrors.md
|
||||||
|
- docs/models/errors/refreshlibraryresponsebody.md
|
||||||
|
- docs/models/errors/getlatestlibraryitemserrors.md
|
||||||
|
- docs/models/errors/getlatestlibraryitemsresponsebody.md
|
||||||
|
- docs/models/errors/getcommonlibraryitemserrors.md
|
||||||
|
- docs/models/errors/getcommonlibraryitemsresponsebody.md
|
||||||
|
- docs/models/errors/getmetadataerrors.md
|
||||||
|
- docs/models/errors/getmetadataresponsebody.md
|
||||||
|
- docs/models/errors/getmetadatachildrenerrors.md
|
||||||
|
- docs/models/errors/getmetadatachildrenresponsebody.md
|
||||||
|
- docs/models/errors/getondeckerrors.md
|
||||||
|
- docs/models/errors/getondeckresponsebody.md
|
||||||
|
- docs/models/errors/loglineerrors.md
|
||||||
|
- docs/models/errors/loglineresponsebody.md
|
||||||
|
- docs/models/errors/logmultilineerrors.md
|
||||||
|
- docs/models/errors/logmultilineresponsebody.md
|
||||||
|
- docs/models/errors/enablepapertrailerrors.md
|
||||||
|
- docs/models/errors/enablepapertrailresponsebody.md
|
||||||
|
- docs/models/errors/createplaylisterrors.md
|
||||||
|
- docs/models/errors/createplaylistresponsebody.md
|
||||||
|
- docs/models/errors/getplaylistserrors.md
|
||||||
|
- docs/models/errors/getplaylistsresponsebody.md
|
||||||
|
- docs/models/errors/getplaylisterrors.md
|
||||||
|
- docs/models/errors/getplaylistresponsebody.md
|
||||||
|
- docs/models/errors/deleteplaylisterrors.md
|
||||||
|
- docs/models/errors/deleteplaylistresponsebody.md
|
||||||
|
- docs/models/errors/updateplaylisterrors.md
|
||||||
|
- docs/models/errors/updateplaylistresponsebody.md
|
||||||
|
- docs/models/errors/getplaylistcontentserrors.md
|
||||||
|
- docs/models/errors/getplaylistcontentsresponsebody.md
|
||||||
|
- docs/models/errors/clearplaylistcontentserrors.md
|
||||||
|
- docs/models/errors/clearplaylistcontentsresponsebody.md
|
||||||
|
- docs/models/errors/addplaylistcontentserrors.md
|
||||||
|
- docs/models/errors/addplaylistcontentsresponsebody.md
|
||||||
|
- docs/models/errors/uploadplaylisterrors.md
|
||||||
|
- docs/models/errors/uploadplaylistresponsebody.md
|
||||||
|
- docs/models/errors/gettransienttokenerrors.md
|
||||||
|
- docs/models/errors/gettransienttokenresponsebody.md
|
||||||
|
- docs/models/errors/getsourceconnectioninformationerrors.md
|
||||||
|
- docs/models/errors/getsourceconnectioninformationresponsebody.md
|
||||||
|
- docs/models/errors/getsessionserrors.md
|
||||||
|
- docs/models/errors/getsessionsresponsebody.md
|
||||||
|
- docs/models/errors/getsessionhistoryerrors.md
|
||||||
|
- docs/models/errors/getsessionhistoryresponsebody.md
|
||||||
|
- docs/models/errors/gettranscodesessionserrors.md
|
||||||
|
- docs/models/errors/gettranscodesessionsresponsebody.md
|
||||||
|
- docs/models/errors/stoptranscodesessionerrors.md
|
||||||
|
- docs/models/errors/stoptranscodesessionresponsebody.md
|
||||||
|
- docs/models/errors/getupdatestatuserrors.md
|
||||||
|
- docs/models/errors/getupdatestatusresponsebody.md
|
||||||
|
- docs/models/errors/checkforupdateserrors.md
|
||||||
|
- docs/models/errors/checkforupdatesresponsebody.md
|
||||||
|
- docs/models/errors/applyupdateserrors.md
|
||||||
|
- docs/models/errors/applyupdatesresponsebody.md
|
||||||
|
- docs/models/errors/startuniversaltranscodeerrors.md
|
||||||
|
- docs/models/errors/startuniversaltranscoderesponsebody.md
|
||||||
|
- docs/models/errors/gettimelineerrors.md
|
||||||
|
- docs/models/errors/gettimelineresponsebody.md
|
||||||
|
- docs/models/components/security.md
|
||||||
|
- USAGE.md
|
||||||
|
- .gitattributes
|
||||||
143
README.md
143
README.md
@@ -2001,3 +2001,146 @@ pprint(vars(results))
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
License: MIT. See license in LICENSE.
|
License: MIT. See license in LICENSE.
|
||||||
|
|
||||||
|
<!-- No SDK Installation -->
|
||||||
|
<!-- No SDK Example Usage -->
|
||||||
|
<!-- No SDK Available Operations -->
|
||||||
|
<!-- Start Error Handling [errors] -->
|
||||||
|
## Error Handling
|
||||||
|
|
||||||
|
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
|
||||||
|
|
||||||
|
| Error Object | Status Code | Content Type |
|
||||||
|
| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
|
||||||
|
| errors.GetServerCapabilitiesResponseBody | 401 | application/json |
|
||||||
|
| errors.SDKError | 4x-5xx | */* |
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```python
|
||||||
|
import plex_api
|
||||||
|
|
||||||
|
s = plex_api.PlexAPI(
|
||||||
|
access_token="<YOUR_API_KEY_HERE>",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
res = None
|
||||||
|
try:
|
||||||
|
res = s.server.get_server_capabilities()
|
||||||
|
except errors.GetServerCapabilitiesResponseBody as e:
|
||||||
|
print(e) # handle exception
|
||||||
|
raise(e)
|
||||||
|
except errors.SDKError as e:
|
||||||
|
print(e) # handle exception
|
||||||
|
raise(e)
|
||||||
|
|
||||||
|
if res.object is not None:
|
||||||
|
# handle response
|
||||||
|
pass
|
||||||
|
```
|
||||||
|
<!-- End Error Handling [errors] -->
|
||||||
|
|
||||||
|
<!-- Start Server Selection [server] -->
|
||||||
|
## 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 | `{protocol}://{ip}:{port}` | `protocol` (default is `http`), `ip` (default is `10.10.10.47`), `port` (default is `32400`) |
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
|
||||||
|
```python
|
||||||
|
import plex_api
|
||||||
|
|
||||||
|
s = plex_api.PlexAPI(
|
||||||
|
server_idx=0,
|
||||||
|
access_token="<YOUR_API_KEY_HERE>",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
res = s.server.get_server_capabilities()
|
||||||
|
|
||||||
|
if res.object is not None:
|
||||||
|
# handle response
|
||||||
|
pass
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 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: models.ServerProtocol`
|
||||||
|
* `ip: str`
|
||||||
|
* `port: str`
|
||||||
|
|
||||||
|
### 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:
|
||||||
|
```python
|
||||||
|
import plex_api
|
||||||
|
|
||||||
|
s = plex_api.PlexAPI(
|
||||||
|
server_url="{protocol}://{ip}:{port}",
|
||||||
|
access_token="<YOUR_API_KEY_HERE>",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
res = s.server.get_server_capabilities()
|
||||||
|
|
||||||
|
if res.object is not None:
|
||||||
|
# handle response
|
||||||
|
pass
|
||||||
|
```
|
||||||
|
<!-- End Server Selection [server] -->
|
||||||
|
|
||||||
|
<!-- Start Custom HTTP Client [http-client] -->
|
||||||
|
## Custom HTTP Client
|
||||||
|
|
||||||
|
The Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
|
||||||
|
|
||||||
|
For example, you could specify a header for every request that this sdk makes as follows:
|
||||||
|
```python
|
||||||
|
import plex_api
|
||||||
|
import requests
|
||||||
|
|
||||||
|
http_client = requests.Session()
|
||||||
|
http_client.headers.update({'x-custom-header': 'someValue'})
|
||||||
|
s = plex_api.PlexAPI(client: http_client)
|
||||||
|
```
|
||||||
|
<!-- End Custom HTTP Client [http-client] -->
|
||||||
|
|
||||||
|
<!-- Start Authentication [security] -->
|
||||||
|
## Authentication
|
||||||
|
|
||||||
|
### Per-Client Security Schemes
|
||||||
|
|
||||||
|
This SDK supports the following security scheme globally:
|
||||||
|
|
||||||
|
| Name | Type | Scheme |
|
||||||
|
| -------------- | -------------- | -------------- |
|
||||||
|
| `access_token` | apiKey | API key |
|
||||||
|
|
||||||
|
To authenticate with the API the `access_token` parameter must be set when initializing the SDK client instance. For example:
|
||||||
|
```python
|
||||||
|
import plex_api
|
||||||
|
|
||||||
|
s = plex_api.PlexAPI(
|
||||||
|
access_token="<YOUR_API_KEY_HERE>",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
res = s.server.get_server_capabilities()
|
||||||
|
|
||||||
|
if res.object is not None:
|
||||||
|
# handle response
|
||||||
|
pass
|
||||||
|
```
|
||||||
|
<!-- End Authentication [security] -->
|
||||||
|
|
||||||
|
<!-- Placeholder for Future Speakeasy SDK Sections -->
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
11
RELEASES.md
Normal file
11
RELEASES.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
|
||||||
|
## 2024-01-20 03:11:16
|
||||||
|
### Changes
|
||||||
|
Based on:
|
||||||
|
- OpenAPI Doc 0.0.3
|
||||||
|
- Speakeasy CLI 1.148.0 (2.237.3) https://github.com/speakeasy-api/speakeasy
|
||||||
|
### Generated
|
||||||
|
- [python v0.0.1] .
|
||||||
|
### Releases
|
||||||
|
- [PyPI v0.0.1] https://pypi.org/project/plexpy/0.0.1 - .
|
||||||
16
USAGE.md
Normal file
16
USAGE.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<!-- Start SDK Example Usage [usage] -->
|
||||||
|
```python
|
||||||
|
import plex_api
|
||||||
|
|
||||||
|
s = plex_api.PlexAPI(
|
||||||
|
access_token="<YOUR_API_KEY_HERE>",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
res = s.server.get_server_capabilities()
|
||||||
|
|
||||||
|
if res.object is not None:
|
||||||
|
# handle response
|
||||||
|
pass
|
||||||
|
```
|
||||||
|
<!-- End SDK Example Usage [usage] -->
|
||||||
8
docs/models/components/security.md
Normal file
8
docs/models/components/security.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# Security
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------ | ------------------ | ------------------ | ------------------ |
|
||||||
|
| `access_token` | *str* | :heavy_check_mark: | N/A |
|
||||||
10
docs/models/errors/addplaylistcontentserrors.md
Normal file
10
docs/models/errors/addplaylistcontentserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# AddPlaylistContentsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/addplaylistcontentsresponsebody.md
Normal file
11
docs/models/errors/addplaylistcontentsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# AddPlaylistContentsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
|
||||||
|
| `errors` | List[[errors.AddPlaylistContentsErrors](../../models/errors/addplaylistcontentserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/applyupdateserrors.md
Normal file
10
docs/models/errors/applyupdateserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# ApplyUpdatesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/applyupdatesresponsebody.md
Normal file
11
docs/models/errors/applyupdatesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# ApplyUpdatesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.ApplyUpdatesErrors](../../models/errors/applyupdateserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/cancelserveractivitieserrors.md
Normal file
10
docs/models/errors/cancelserveractivitieserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# CancelServerActivitiesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/cancelserveractivitiesresponsebody.md
Normal file
11
docs/models/errors/cancelserveractivitiesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# CancelServerActivitiesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
|
||||||
|
| `errors` | List[[errors.CancelServerActivitiesErrors](../../models/errors/cancelserveractivitieserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/checkforupdateserrors.md
Normal file
10
docs/models/errors/checkforupdateserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# CheckForUpdatesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/checkforupdatesresponsebody.md
Normal file
11
docs/models/errors/checkforupdatesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# CheckForUpdatesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.CheckForUpdatesErrors](../../models/errors/checkforupdateserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/clearplaylistcontentserrors.md
Normal file
10
docs/models/errors/clearplaylistcontentserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# ClearPlaylistContentsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/clearplaylistcontentsresponsebody.md
Normal file
11
docs/models/errors/clearplaylistcontentsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# ClearPlaylistContentsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.ClearPlaylistContentsErrors](../../models/errors/clearplaylistcontentserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/createplaylisterrors.md
Normal file
10
docs/models/errors/createplaylisterrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# CreatePlaylistErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/createplaylistresponsebody.md
Normal file
11
docs/models/errors/createplaylistresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# CreatePlaylistResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.CreatePlaylistErrors](../../models/errors/createplaylisterrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/deletelibraryerrors.md
Normal file
10
docs/models/errors/deletelibraryerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# DeleteLibraryErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/deletelibraryresponsebody.md
Normal file
11
docs/models/errors/deletelibraryresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# DeleteLibraryResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.DeleteLibraryErrors](../../models/errors/deletelibraryerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/deleteplaylisterrors.md
Normal file
10
docs/models/errors/deleteplaylisterrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# DeletePlaylistErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/deleteplaylistresponsebody.md
Normal file
11
docs/models/errors/deleteplaylistresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# DeletePlaylistResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.DeletePlaylistErrors](../../models/errors/deleteplaylisterrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/enablepapertrailerrors.md
Normal file
10
docs/models/errors/enablepapertrailerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# EnablePaperTrailErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/enablepapertrailresponsebody.md
Normal file
11
docs/models/errors/enablepapertrailresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# EnablePaperTrailResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.EnablePaperTrailErrors](../../models/errors/enablepapertrailerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/errors.md
Normal file
10
docs/models/errors/errors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Errors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
10
docs/models/errors/getavailableclientserrors.md
Normal file
10
docs/models/errors/getavailableclientserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetAvailableClientsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getavailableclientsresponsebody.md
Normal file
11
docs/models/errors/getavailableclientsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetAvailableClientsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
|
||||||
|
| `errors` | List[[errors.GetAvailableClientsErrors](../../models/errors/getavailableclientserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getbutlertaskserrors.md
Normal file
10
docs/models/errors/getbutlertaskserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetButlerTasksErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getbutlertasksresponsebody.md
Normal file
11
docs/models/errors/getbutlertasksresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetButlerTasksResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetButlerTasksErrors](../../models/errors/getbutlertaskserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getcommonlibraryitemserrors.md
Normal file
10
docs/models/errors/getcommonlibraryitemserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetCommonLibraryItemsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getcommonlibraryitemsresponsebody.md
Normal file
11
docs/models/errors/getcommonlibraryitemsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetCommonLibraryItemsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetCommonLibraryItemsErrors](../../models/errors/getcommonlibraryitemserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getdeviceserrors.md
Normal file
10
docs/models/errors/getdeviceserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetDevicesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getdevicesresponsebody.md
Normal file
11
docs/models/errors/getdevicesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetDevicesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetDevicesErrors](../../models/errors/getdeviceserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getfilehasherrors.md
Normal file
10
docs/models/errors/getfilehasherrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetFileHashErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getfilehashresponsebody.md
Normal file
11
docs/models/errors/getfilehashresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetFileHashResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetFileHashErrors](../../models/errors/getfilehasherrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getglobalhubserrors.md
Normal file
10
docs/models/errors/getglobalhubserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetGlobalHubsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getglobalhubsresponsebody.md
Normal file
11
docs/models/errors/getglobalhubsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetGlobalHubsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetGlobalHubsErrors](../../models/errors/getglobalhubserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getlatestlibraryitemserrors.md
Normal file
10
docs/models/errors/getlatestlibraryitemserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetLatestLibraryItemsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getlatestlibraryitemsresponsebody.md
Normal file
11
docs/models/errors/getlatestlibraryitemsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetLatestLibraryItemsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetLatestLibraryItemsErrors](../../models/errors/getlatestlibraryitemserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getlibrarieserrors.md
Normal file
10
docs/models/errors/getlibrarieserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetLibrariesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getlibrariesresponsebody.md
Normal file
11
docs/models/errors/getlibrariesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetLibrariesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetLibrariesErrors](../../models/errors/getlibrarieserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getlibraryerrors.md
Normal file
10
docs/models/errors/getlibraryerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetLibraryErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
10
docs/models/errors/getlibraryhubserrors.md
Normal file
10
docs/models/errors/getlibraryhubserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetLibraryHubsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getlibraryhubsresponsebody.md
Normal file
11
docs/models/errors/getlibraryhubsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetLibraryHubsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetLibraryHubsErrors](../../models/errors/getlibraryhubserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getlibraryitemserrors.md
Normal file
10
docs/models/errors/getlibraryitemserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetLibraryItemsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getlibraryitemsresponsebody.md
Normal file
11
docs/models/errors/getlibraryitemsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetLibraryItemsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetLibraryItemsErrors](../../models/errors/getlibraryitemserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
11
docs/models/errors/getlibraryresponsebody.md
Normal file
11
docs/models/errors/getlibraryresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetLibraryResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetLibraryErrors](../../models/errors/getlibraryerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getmetadatachildrenerrors.md
Normal file
10
docs/models/errors/getmetadatachildrenerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetMetadataChildrenErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getmetadatachildrenresponsebody.md
Normal file
11
docs/models/errors/getmetadatachildrenresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetMetadataChildrenResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
|
||||||
|
| `errors` | List[[errors.GetMetadataChildrenErrors](../../models/errors/getmetadatachildrenerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getmetadataerrors.md
Normal file
10
docs/models/errors/getmetadataerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetMetadataErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getmetadataresponsebody.md
Normal file
11
docs/models/errors/getmetadataresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetMetadataResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetMetadataErrors](../../models/errors/getmetadataerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getmyplexaccounterrors.md
Normal file
10
docs/models/errors/getmyplexaccounterrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetMyPlexAccountErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getmyplexaccountresponsebody.md
Normal file
11
docs/models/errors/getmyplexaccountresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetMyPlexAccountResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetMyPlexAccountErrors](../../models/errors/getmyplexaccounterrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getondeckerrors.md
Normal file
10
docs/models/errors/getondeckerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetOnDeckErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getondeckresponsebody.md
Normal file
11
docs/models/errors/getondeckresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetOnDeckResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetOnDeckErrors](../../models/errors/getondeckerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getplaylistcontentserrors.md
Normal file
10
docs/models/errors/getplaylistcontentserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetPlaylistContentsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getplaylistcontentsresponsebody.md
Normal file
11
docs/models/errors/getplaylistcontentsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetPlaylistContentsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
|
||||||
|
| `errors` | List[[errors.GetPlaylistContentsErrors](../../models/errors/getplaylistcontentserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getplaylisterrors.md
Normal file
10
docs/models/errors/getplaylisterrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetPlaylistErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getplaylistresponsebody.md
Normal file
11
docs/models/errors/getplaylistresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetPlaylistResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetPlaylistErrors](../../models/errors/getplaylisterrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getplaylistserrors.md
Normal file
10
docs/models/errors/getplaylistserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetPlaylistsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getplaylistsresponsebody.md
Normal file
11
docs/models/errors/getplaylistsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetPlaylistsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetPlaylistsErrors](../../models/errors/getplaylistserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getrecentlyaddederrors.md
Normal file
10
docs/models/errors/getrecentlyaddederrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetRecentlyAddedErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getrecentlyaddedresponsebody.md
Normal file
11
docs/models/errors/getrecentlyaddedresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetRecentlyAddedResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetRecentlyAddedErrors](../../models/errors/getrecentlyaddederrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getresizedphotoerrors.md
Normal file
10
docs/models/errors/getresizedphotoerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetResizedPhotoErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getresizedphotoresponsebody.md
Normal file
11
docs/models/errors/getresizedphotoresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetResizedPhotoResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetResizedPhotoErrors](../../models/errors/getresizedphotoerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getsearchresultserrors.md
Normal file
10
docs/models/errors/getsearchresultserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetSearchResultsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getsearchresultsresponsebody.md
Normal file
11
docs/models/errors/getsearchresultsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetSearchResultsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetSearchResultsErrors](../../models/errors/getsearchresultserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getserveractivitieserrors.md
Normal file
10
docs/models/errors/getserveractivitieserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetServerActivitiesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getserveractivitiesresponsebody.md
Normal file
11
docs/models/errors/getserveractivitiesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetServerActivitiesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
|
||||||
|
| `errors` | List[[errors.GetServerActivitiesErrors](../../models/errors/getserveractivitieserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
11
docs/models/errors/getservercapabilitiesresponsebody.md
Normal file
11
docs/models/errors/getservercapabilitiesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetServerCapabilitiesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.Errors](../../models/errors/errors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getserveridentityerrors.md
Normal file
10
docs/models/errors/getserveridentityerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetServerIdentityErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getserveridentityresponsebody.md
Normal file
11
docs/models/errors/getserveridentityresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetServerIdentityResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetServerIdentityErrors](../../models/errors/getserveridentityerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getserverlisterrors.md
Normal file
10
docs/models/errors/getserverlisterrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetServerListErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getserverlistresponsebody.md
Normal file
11
docs/models/errors/getserverlistresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetServerListResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetServerListErrors](../../models/errors/getserverlisterrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getserverpreferenceserrors.md
Normal file
10
docs/models/errors/getserverpreferenceserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetServerPreferencesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getserverpreferencesresponsebody.md
Normal file
11
docs/models/errors/getserverpreferencesresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetServerPreferencesResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetServerPreferencesErrors](../../models/errors/getserverpreferenceserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getsessionhistoryerrors.md
Normal file
10
docs/models/errors/getsessionhistoryerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetSessionHistoryErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getsessionhistoryresponsebody.md
Normal file
11
docs/models/errors/getsessionhistoryresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetSessionHistoryResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetSessionHistoryErrors](../../models/errors/getsessionhistoryerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getsessionserrors.md
Normal file
10
docs/models/errors/getsessionserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetSessionsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getsessionsresponsebody.md
Normal file
11
docs/models/errors/getsessionsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetSessionsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetSessionsErrors](../../models/errors/getsessionserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getsourceconnectioninformationerrors.md
Normal file
10
docs/models/errors/getsourceconnectioninformationerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetSourceConnectionInformationErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# GetSourceConnectionInformationResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetSourceConnectionInformationErrors](../../models/errors/getsourceconnectioninformationerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/gettimelineerrors.md
Normal file
10
docs/models/errors/gettimelineerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetTimelineErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/gettimelineresponsebody.md
Normal file
11
docs/models/errors/gettimelineresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetTimelineResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetTimelineErrors](../../models/errors/gettimelineerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/gettranscodesessionserrors.md
Normal file
10
docs/models/errors/gettranscodesessionserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetTranscodeSessionsErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/gettranscodesessionsresponsebody.md
Normal file
11
docs/models/errors/gettranscodesessionsresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetTranscodeSessionsResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetTranscodeSessionsErrors](../../models/errors/gettranscodesessionserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/gettransienttokenerrors.md
Normal file
10
docs/models/errors/gettransienttokenerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetTransientTokenErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/gettransienttokenresponsebody.md
Normal file
11
docs/models/errors/gettransienttokenresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetTransientTokenResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetTransientTokenErrors](../../models/errors/gettransienttokenerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/getupdatestatuserrors.md
Normal file
10
docs/models/errors/getupdatestatuserrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetUpdateStatusErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/getupdatestatusresponsebody.md
Normal file
11
docs/models/errors/getupdatestatusresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetUpdateStatusResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.GetUpdateStatusErrors](../../models/errors/getupdatestatuserrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/loglineerrors.md
Normal file
10
docs/models/errors/loglineerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# LogLineErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/loglineresponsebody.md
Normal file
11
docs/models/errors/loglineresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# LogLineResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.LogLineErrors](../../models/errors/loglineerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/logmultilineerrors.md
Normal file
10
docs/models/errors/logmultilineerrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# LogMultiLineErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/logmultilineresponsebody.md
Normal file
11
docs/models/errors/logmultilineresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# LogMultiLineResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.LogMultiLineErrors](../../models/errors/logmultilineerrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/markplayederrors.md
Normal file
10
docs/models/errors/markplayederrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# MarkPlayedErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/markplayedresponsebody.md
Normal file
11
docs/models/errors/markplayedresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# MarkPlayedResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.MarkPlayedErrors](../../models/errors/markplayederrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/markunplayederrors.md
Normal file
10
docs/models/errors/markunplayederrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# MarkUnplayedErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[float]* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/models/errors/markunplayedresponsebody.md
Normal file
11
docs/models/errors/markunplayedresponsebody.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# MarkUnplayedResponseBody
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
||||||
|
| `errors` | List[[errors.MarkUnplayedErrors](../../models/errors/markunplayederrors.md)] | :heavy_minus_sign: | N/A |
|
||||||
|
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/models/errors/performsearcherrors.md
Normal file
10
docs/models/errors/performsearcherrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# PerformSearchErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `code` | *Optional[float]* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `message` | *Optional[str]* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `status` | *Optional[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