We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7a32d commit e593c5bCopy full SHA for e593c5b
1 file changed
src/payloads/Guild.ts
@@ -6,23 +6,19 @@ export interface APICountingGuild<IDType = string> {
6
*/
7
_id: IDType;
8
/**
9
- * The Discord Snowflake ID of the guild
+ * The Discord Snowflake of the guild
10
11
guildId: string;
12
13
- * The counting channel of the guild
+ * The Counting Channels for the guild
14
15
channels: string[];
16
17
* The ISO-639-1 language code for the guild
18
19
language: LanguageCode;
20
21
- * The premium type of the guild
+ * Whether the guild is premium or not
22
23
premium: boolean;
24
- /**
25
- * Initialized when the guild was created but will be updated at every count.
26
- */
27
- lastCountAt: Date;
28
}
0 commit comments