mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-09 20:57:44 +00:00
SDK update generated by liblab
This commit is contained in:
10
src/plexsdk/models/State.py
Normal file
10
src/plexsdk/models/State.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class State(Enum):
|
||||
PLAYING = "playing"
|
||||
PAUSED = "paused"
|
||||
STOPPED = "stopped"
|
||||
|
||||
def list():
|
||||
return list(map(lambda x: x.value, State._member_map_.values()))
|
||||
Reference in New Issue
Block a user