From f4b0821517c77a3acfdddeb13fee93cef1e028d7 Mon Sep 17 00:00:00 2001 From: Dean Gardiner Date: Wed, 11 May 2016 02:08:55 +1200 Subject: [PATCH] Added missing properties to the `Detail` class --- plex/objects/detail.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plex/objects/detail.py b/plex/objects/detail.py index 23d7979..540b28d 100644 --- a/plex/objects/detail.py +++ b/plex/objects/detail.py @@ -17,11 +17,16 @@ class Detail(Container): allow_camera_upload = Property('allowCameraUpload', (int, bool)) allow_channel_access = Property('allowChannelAccess', (int, bool)) allow_media_deletion = Property('allowMediaDeletion', (int, bool)) + allow_sharing = Property('allowSharing', (int, bool)) allow_sync = Property('allowSync', (int, bool)) background_processing = Property('backgroundProcessing', (int, bool)) companion_proxy = Property('companionProxy', (int, bool)) + event_stream = Property('eventStream', (int, bool)) hub_search = Property('hubSearch', (int, bool)) + plugin_host = Property('pluginHost', (int, bool)) + read_only_libraries = Property('readOnlyLibraries', (int, bool)) + updater = Property('updater', (int, bool)) certificate = Property(type=(int, bool)) multiuser = Property(type=(int, bool))