| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| enabled | bool |
from seerr.models.jellyfin_library import JellyfinLibrary
# TODO update the JSON string below
json = "{}"
# create an instance of JellyfinLibrary from a JSON string
jellyfin_library_instance = JellyfinLibrary.from_json(json)
# print the JSON string representation of the object
print(JellyfinLibrary.to_json())
# convert the object into a dict
jellyfin_library_dict = jellyfin_library_instance.to_dict()
# create an instance of JellyfinLibrary from a dict
jellyfin_library_from_dict = JellyfinLibrary.from_dict(jellyfin_library_dict)