Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.09 KB

File metadata and controls

35 lines (26 loc) · 1.09 KB

PlexSettings

Properties

Name Type Description Notes
name str [readonly]
machine_id str [readonly]
ip str
port float
use_ssl bool [optional]
libraries List[PlexLibrary] [optional] [readonly]
web_app_url str [optional]

Example

from seerr.models.plex_settings import PlexSettings

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

# convert the object into a dict
plex_settings_dict = plex_settings_instance.to_dict()
# create an instance of PlexSettings from a dict
plex_settings_from_dict = PlexSettings.from_dict(plex_settings_dict)

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