@@ -375,6 +375,7 @@ class Movie(
375
375
studio (str): Studio that created movie (Di Bonaventura Pictures; 21 Laps Entertainment).
376
376
tagline (str): Movie tag line (Back 2 Work; Who says men can't change?).
377
377
theme (str): URL to theme resource (/library/metadata/<ratingkey>/theme/<themeid>).
378
+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
378
379
useOriginalTitle (int): Setting that indicates if the original title is used for the movie
379
380
(-1 = Library default, 0 = No, 1 = Yes).
380
381
viewOffset (int): View offset in milliseconds.
@@ -420,6 +421,7 @@ def _loadData(self, data):
420
421
self .studio = data .attrib .get ('studio' )
421
422
self .tagline = data .attrib .get ('tagline' )
422
423
self .theme = data .attrib .get ('theme' )
424
+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
423
425
self .useOriginalTitle = utils .cast (int , data .attrib .get ('useOriginalTitle' , '-1' ))
424
426
self .viewOffset = utils .cast (int , data .attrib .get ('viewOffset' , 0 ))
425
427
self .writers = self .findItems (data , media .Writer )
@@ -543,6 +545,7 @@ class Show(
543
545
(-1 = Account default, 0 = Manually selected, 1 = Shown with foreign audio, 2 = Always enabled).
544
546
tagline (str): Show tag line.
545
547
theme (str): URL to theme resource (/library/metadata/<ratingkey>/theme/<themeid>).
548
+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
546
549
useOriginalTitle (int): Setting that indicates if the original title is used for the show
547
550
(-1 = Library default, 0 = No, 1 = Yes).
548
551
viewedLeafCount (int): Number of items marked as played in the show view.
@@ -592,6 +595,7 @@ def _loadData(self, data):
592
595
self .subtitleMode = utils .cast (int , data .attrib .get ('subtitleMode' , '-1' ))
593
596
self .tagline = data .attrib .get ('tagline' )
594
597
self .theme = data .attrib .get ('theme' )
598
+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
595
599
self .useOriginalTitle = utils .cast (int , data .attrib .get ('useOriginalTitle' , '-1' ))
596
600
self .viewedLeafCount = utils .cast (int , data .attrib .get ('viewedLeafCount' ))
597
601
self .year = utils .cast (int , data .attrib .get ('year' ))
@@ -735,6 +739,7 @@ class Season(
735
739
subtitleLanguage (str): Setting that indicates the preferred subtitle language.
736
740
subtitleMode (int): Setting that indicates the auto-select subtitle mode.
737
741
(-1 = Series default, 0 = Manually selected, 1 = Shown with foreign audio, 2 = Always enabled).
742
+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
738
743
viewedLeafCount (int): Number of items marked as played in the season view.
739
744
year (int): Year the season was released.
740
745
"""
@@ -766,6 +771,7 @@ def _loadData(self, data):
766
771
self .ratings = self .findItems (data , media .Rating )
767
772
self .subtitleLanguage = data .attrib .get ('subtitleLanguage' , '' )
768
773
self .subtitleMode = utils .cast (int , data .attrib .get ('subtitleMode' , '-1' ))
774
+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
769
775
self .viewedLeafCount = utils .cast (int , data .attrib .get ('viewedLeafCount' ))
770
776
self .year = utils .cast (int , data .attrib .get ('year' ))
771
777
@@ -914,6 +920,7 @@ class Episode(
914
920
skipParent (bool): True if the show's seasons are set to hidden.
915
921
sourceURI (str): Remote server URI (server://<machineIdentifier>/com.plexapp.plugins.library)
916
922
(remote playlist item only).
923
+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
917
924
viewOffset (int): View offset in milliseconds.
918
925
writers (List<:class:`~plexapi.media.Writer`>): List of writers objects.
919
926
year (int): Year the episode was released.
@@ -958,6 +965,7 @@ def _loadData(self, data):
958
965
self .roles = self .findItems (data , media .Role )
959
966
self .skipParent = utils .cast (bool , data .attrib .get ('skipParent' , '0' ))
960
967
self .sourceURI = data .attrib .get ('source' ) # remote playlist item
968
+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
961
969
self .viewOffset = utils .cast (int , data .attrib .get ('viewOffset' , 0 ))
962
970
self .writers = self .findItems (data , media .Writer )
963
971
self .year = utils .cast (int , data .attrib .get ('year' ))
0 commit comments