17 lines
349 B
Python
17 lines
349 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
|
|
class PlaybackState(object):
|
|
"""
|
|
Enum of playback states.
|
|
"""
|
|
|
|
#: Constant representing the paused state.
|
|
PAUSED = 'paused'
|
|
|
|
#: Constant representing the playing state.
|
|
PLAYING = 'playing'
|
|
|
|
#: Constant representing the stopped state.
|
|
STOPPED = 'stopped'
|