15 lines
283 B
Python
15 lines
283 B
Python
class PlaybackState:
|
|
|
|
"""
|
|
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"
|