Browse Source
Adding more guild things that API returns to bots
- Vanity Code
- Max Members & Presences
- Description
pull/141/head
Justin
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
disco/types/guild.py
|
|
@ -339,6 +339,10 @@ class Guild(SlottedModel, Permissible): |
|
|
|
member_count = Field(int) |
|
|
|
premium_tier = Field(int) |
|
|
|
premium_subscription_count = Field(int) |
|
|
|
vanity_url_code = Field(text) |
|
|
|
max_presences = Field(int) |
|
|
|
max_members = Field(int) |
|
|
|
description = Field(text) |
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs): |
|
|
|
super(Guild, self).__init__(*args, **kwargs) |
|
|
|