$guildCommunityUpdatesChannelID
$guildCommunityUpdatesChannelID will return the guild’s community updates channel.
Usage
$guildCommunityUpdatesChannelID[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
Example(s)
This will return the community updates channel ID of the current guild (if any):
1client.command({2 name: "guildCommunityUpdatesChannelID",3 code: `4 $guildCommunityUpdatesChannelID[$guildID]5 `6});