|
@ -50,6 +50,11 @@ class VoiceState: |
|
|
Indicates if the user is currently muted by their own accord. |
|
|
Indicates if the user is currently muted by their own accord. |
|
|
self_deaf: :class:`bool` |
|
|
self_deaf: :class:`bool` |
|
|
Indicates if the user is currently deafened by their own accord. |
|
|
Indicates if the user is currently deafened by their own accord. |
|
|
|
|
|
self_stream: :class:`bool` |
|
|
|
|
|
Indicates if the user is currently streaming via 'Go Live' feature. |
|
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 1.3.0 |
|
|
|
|
|
|
|
|
self_video: :class:`bool` |
|
|
self_video: :class:`bool` |
|
|
Indicates if the user is currently broadcasting video. |
|
|
Indicates if the user is currently broadcasting video. |
|
|
afk: :class:`bool` |
|
|
afk: :class:`bool` |
|
@ -60,7 +65,7 @@ class VoiceState: |
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
__slots__ = ('session_id', 'deaf', 'mute', 'self_mute', |
|
|
__slots__ = ('session_id', 'deaf', 'mute', 'self_mute', |
|
|
'self_video', 'self_deaf', 'afk', 'channel') |
|
|
'self_stream', 'self_video', 'self_deaf', 'afk', 'channel') |
|
|
|
|
|
|
|
|
def __init__(self, *, data, channel=None): |
|
|
def __init__(self, *, data, channel=None): |
|
|
self.session_id = data.get('session_id') |
|
|
self.session_id = data.get('session_id') |
|
@ -69,6 +74,7 @@ class VoiceState: |
|
|
def _update(self, data, channel): |
|
|
def _update(self, data, channel): |
|
|
self.self_mute = data.get('self_mute', False) |
|
|
self.self_mute = data.get('self_mute', False) |
|
|
self.self_deaf = data.get('self_deaf', False) |
|
|
self.self_deaf = data.get('self_deaf', False) |
|
|
|
|
|
self.self_stream = data.get('self_stream', False) |
|
|
self.self_video = data.get('self_video', False) |
|
|
self.self_video = data.get('self_video', False) |
|
|
self.afk = data.get('suppress', False) |
|
|
self.afk = data.get('suppress', False) |
|
|
self.mute = data.get('mute', False) |
|
|
self.mute = data.get('mute', False) |
|
@ -76,7 +82,7 @@ class VoiceState: |
|
|
self.channel = channel |
|
|
self.channel = channel |
|
|
|
|
|
|
|
|
def __repr__(self): |
|
|
def __repr__(self): |
|
|
return '<VoiceState self_mute={0.self_mute} self_deaf={0.self_deaf} self_video={0.self_video} channel={0.channel!r}>'.format(self) |
|
|
return '<VoiceState self_mute={0.self_mute} self_deaf={0.self_deaf} self_stream={0.self_stream} channel={0.channel!r}>'.format(self) |
|
|
|
|
|
|
|
|
def flatten_user(cls): |
|
|
def flatten_user(cls): |
|
|
for attr, value in itertools.chain(BaseUser.__dict__.items(), User.__dict__.items()): |
|
|
for attr, value in itertools.chain(BaseUser.__dict__.items(), User.__dict__.items()): |
|
|