@@ -375,6 +375,7 @@ class Movie(
375375 studio (str): Studio that created movie (Di Bonaventura Pictures; 21 Laps Entertainment).
376376 tagline (str): Movie tag line (Back 2 Work; Who says men can't change?).
377377 theme (str): URL to theme resource (/library/metadata/<ratingkey>/theme/<themeid>).
378+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
378379 useOriginalTitle (int): Setting that indicates if the original title is used for the movie
379380 (-1 = Library default, 0 = No, 1 = Yes).
380381 viewOffset (int): View offset in milliseconds.
@@ -420,6 +421,7 @@ def _loadData(self, data):
420421 self .studio = data .attrib .get ('studio' )
421422 self .tagline = data .attrib .get ('tagline' )
422423 self .theme = data .attrib .get ('theme' )
424+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
423425 self .useOriginalTitle = utils .cast (int , data .attrib .get ('useOriginalTitle' , '-1' ))
424426 self .viewOffset = utils .cast (int , data .attrib .get ('viewOffset' , 0 ))
425427 self .writers = self .findItems (data , media .Writer )
@@ -543,6 +545,7 @@ class Show(
543545 (-1 = Account default, 0 = Manually selected, 1 = Shown with foreign audio, 2 = Always enabled).
544546 tagline (str): Show tag line.
545547 theme (str): URL to theme resource (/library/metadata/<ratingkey>/theme/<themeid>).
548+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
546549 useOriginalTitle (int): Setting that indicates if the original title is used for the show
547550 (-1 = Library default, 0 = No, 1 = Yes).
548551 viewedLeafCount (int): Number of items marked as played in the show view.
@@ -592,6 +595,7 @@ def _loadData(self, data):
592595 self .subtitleMode = utils .cast (int , data .attrib .get ('subtitleMode' , '-1' ))
593596 self .tagline = data .attrib .get ('tagline' )
594597 self .theme = data .attrib .get ('theme' )
598+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
595599 self .useOriginalTitle = utils .cast (int , data .attrib .get ('useOriginalTitle' , '-1' ))
596600 self .viewedLeafCount = utils .cast (int , data .attrib .get ('viewedLeafCount' ))
597601 self .year = utils .cast (int , data .attrib .get ('year' ))
@@ -735,6 +739,7 @@ class Season(
735739 subtitleLanguage (str): Setting that indicates the preferred subtitle language.
736740 subtitleMode (int): Setting that indicates the auto-select subtitle mode.
737741 (-1 = Series default, 0 = Manually selected, 1 = Shown with foreign audio, 2 = Always enabled).
742+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
738743 viewedLeafCount (int): Number of items marked as played in the season view.
739744 year (int): Year the season was released.
740745 """
@@ -766,6 +771,7 @@ def _loadData(self, data):
766771 self .ratings = self .findItems (data , media .Rating )
767772 self .subtitleLanguage = data .attrib .get ('subtitleLanguage' , '' )
768773 self .subtitleMode = utils .cast (int , data .attrib .get ('subtitleMode' , '-1' ))
774+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
769775 self .viewedLeafCount = utils .cast (int , data .attrib .get ('viewedLeafCount' ))
770776 self .year = utils .cast (int , data .attrib .get ('year' ))
771777
@@ -914,6 +920,7 @@ class Episode(
914920 skipParent (bool): True if the show's seasons are set to hidden.
915921 sourceURI (str): Remote server URI (server://<machineIdentifier>/com.plexapp.plugins.library)
916922 (remote playlist item only).
923+ ultraBlurColors (:class:`~plexapi.media.UltraBlurColors`): Ultra blur color object.
917924 viewOffset (int): View offset in milliseconds.
918925 writers (List<:class:`~plexapi.media.Writer`>): List of writers objects.
919926 year (int): Year the episode was released.
@@ -958,6 +965,7 @@ def _loadData(self, data):
958965 self .roles = self .findItems (data , media .Role )
959966 self .skipParent = utils .cast (bool , data .attrib .get ('skipParent' , '0' ))
960967 self .sourceURI = data .attrib .get ('source' ) # remote playlist item
968+ self .ultraBlurColors = self .findItem (data , media .UltraBlurColors )
961969 self .viewOffset = utils .cast (int , data .attrib .get ('viewOffset' , 0 ))
962970 self .writers = self .findItems (data , media .Writer )
963971 self .year = utils .cast (int , data .attrib .get ('year' ))
0 commit comments