Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 886 Bytes

File metadata and controls

31 lines (22 loc) · 886 Bytes

PlexLibrary

Properties

Name Type Description Notes
id str
name str
enabled bool

Example

from overseerr.models.plex_library import PlexLibrary

# TODO update the JSON string below
json = "{}"
# create an instance of PlexLibrary from a JSON string
plex_library_instance = PlexLibrary.from_json(json)
# print the JSON string representation of the object
print(PlexLibrary.to_json())

# convert the object into a dict
plex_library_dict = plex_library_instance.to_dict()
# create an instance of PlexLibrary from a dict
plex_library_from_dict = PlexLibrary.from_dict(plex_library_dict)

[Back to Model list] [Back to API list] [Back to README]