We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c50225 commit 6302402Copy full SHA for 6302402
plexapi/media.py
@@ -345,6 +345,19 @@ def _loadData(self, data):
345
self.width = cast(int, data.attrib.get('width'))
346
347
348
+@utils.registerPlexObject
349
+class Conversion(PlexObject):
350
+ """ Represents a current session. """
351
+ TAG = 'Conversion'
352
+
353
+ def _loadData(self, data):
354
+ self.id = data.attrib.get('id')
355
+ self.composite = data.attrib.get('composite')
356
+ self.title = data.attrib.get('title')
357
+ self.type = data.attrib.get('type')
358
+ self.target = data.attrib.get('target')
359
360
361
class MediaTag(PlexObject):
362
""" Base class for media tags used for filtering and searching your library
363
items or navigating the metadata of media items in your library. Tags are
0 commit comments