From 9dd73cbac0d9f5b2e8103edcd4f76a1d06611f20 Mon Sep 17 00:00:00 2001 From: Dean Gardiner Date: Sun, 17 Jan 2016 16:10:42 +1300 Subject: [PATCH] Updated properties for `Detail` object --- plex/objects/detail.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plex/objects/detail.py b/plex/objects/detail.py index f16c2c1..6268922 100644 --- a/plex/objects/detail.py +++ b/plex/objects/detail.py @@ -18,6 +18,9 @@ class Detail(Container): allow_channel_access = Property('allowChannelAccess', [int, bool]) allow_sync = Property('allowSync', [int, bool]) + background_processing = Property('backgroundProcessing', [int, bool]) + companion_proxy = Property('companionProxy', [int, bool]) + certificate = Property(type=[int, bool]) multiuser = Property(type=[int, bool]) sync = Property(type=[int, bool]) @@ -53,6 +56,9 @@ class MyPlexDetail(Descriptor): class TranscoderDetail(Descriptor): audio = Property('transcoderAudio', [int, bool]) + lyrics = Property('transcoderLyrics', [int, bool]) + photo = Property('transcoderPhoto', [int, bool]) + subtitles = Property('transcoderSubtitles', [int, bool]) video = Property('transcoderVideo', [int, bool]) video_bitrates = Property('transcoderVideoBitrates')