Browse Source

Adding user_limit to Channel objects (#110)

pull/114/head
Kyriog 7 years ago
committed by Andrei Zbikowski
parent
commit
8c6ff6df86
  1. 3
      disco/types/channel.py

3
disco/types/channel.py

@ -110,6 +110,8 @@ class Channel(SlottedModel, Permissible):
The channel's position.
bitrate : int
The channel's bitrate.
user_limit : int
The channel's user limit.
recipients: list(:class:`disco.types.user.User`)
Members of this channel (if this is a DM channel).
type : :const:`ChannelType`
@ -124,6 +126,7 @@ class Channel(SlottedModel, Permissible):
last_message_id = Field(snowflake)
position = Field(int)
bitrate = Field(int)
user_limit = Field(int)
recipients = AutoDictField(User, 'id')
nsfw = Field(bool)
type = Field(enum(ChannelType))

Loading…
Cancel
Save