Add Guild.explicit_content_filter.

This commit is contained in:
Rapptz
2017-04-12 20:18:28 -04:00
parent cadf6960b7
commit 728fae9285
3 changed files with 30 additions and 2 deletions

View File

@ -74,6 +74,14 @@ class VerificationLevel(Enum):
def __str__(self):
return self.name
class ContentFilter(Enum):
disabled = 0
no_role = 1
all_members = 2
def __str__(self):
return self.name
class Status(Enum):
online = 'online'
offline = 'offline'