Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 934 Bytes

File metadata and controls

31 lines (22 loc) · 934 Bytes

JellyfinLibrary

Properties

Name Type Description Notes
id str
name str
enabled bool

Example

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)

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