Browse Source
Document relationship between AutoModRuleAction and its type
pull/8300/head
Mikey
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
discord/automod.py
|
|
@ -65,11 +65,14 @@ class AutoModRuleAction: |
|
|
|
----------- |
|
|
|
type: :class:`AutoModRuleActionType` |
|
|
|
The type of action to take. |
|
|
|
Defaults to :attr:`~AutoModRuleActionType.block_message`. |
|
|
|
channel_id: Optional[:class:`int`] |
|
|
|
The ID of the channel or thread to send the alert message to, if any. |
|
|
|
Passing this sets :attr:`type` to :attr:`~AutoModRuleActionType.send_alert_message`. |
|
|
|
duration: Optional[:class:`datetime.timedelta`] |
|
|
|
The duration of the timeout to apply, if any. |
|
|
|
Has a maximum of 28 days. |
|
|
|
Passing this sets :attr:`type` to :attr:`~AutoModRuleActionType.timeout`. |
|
|
|
""" |
|
|
|
|
|
|
|
__slots__ = ('type', 'channel_id', 'duration') |
|
|
|