diff options
| author | Rapptz <[email protected]> | 2018-09-25 21:56:41 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-09-25 21:56:41 -0400 |
| commit | 836ae730401ea370aa10127bb9c86854c8b516ac (patch) | |
| tree | ba301161d91ef526c630facd542812b571869801 /docs | |
| parent | [commands] Fix NameError in clean_content converter (diff) | |
| download | discord.py-836ae730401ea370aa10127bb9c86854c8b516ac.tar.xz discord.py-836ae730401ea370aa10127bb9c86854c8b516ac.zip | |
Add support for AuditLogDiff.slowmode_delay.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api.rst | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/docs/api.rst b/docs/api.rst index eb2ea366..7fe668d5 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -572,22 +572,22 @@ Application Info The owner of the application. This is a :class:`User` instance with the owner's information at the time of the call. - + .. attribute:: bot_public - + ``True`` if the bot is considered as public, else ``False``. Determines if the bot can be invited by anyone or if it is locked to the token owner. Correspond to the "Public bot" box in the token settings. - + .. attribute:: bot_require_code_grant - + ``True`` if the bot requires code grant, else ``False``. Correspond to the "Bot requires code grant" box in the token settings. - + .. attribute:: rpc_origins - + Returns an array of RPC origin URL strings, if RPC is enabled. If RPC isn't enabled, returns ``None``. @@ -1741,6 +1741,13 @@ this goal, it must make use of a couple of data classes that aid in this goal. See also :attr:`User.avatar`. + .. attribute:: slowmode_delay + + :class:`int` – The number of seconds members have to wait before + sending another message in the channel. + + See also :attr:`TextChannel.slowmode_delay`. + .. this is currently missing the following keys: reason and application_id I'm not sure how to about porting these |