$guildVanityUses
$guildVanityUses will return the uses of a vanity URL.
Usage
$guildVanityUses[guildID?;fetchFirst?]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| guildID? | number | The guild ID. | false | 
| fetchFirst? | boolean | Whether to fetch fresh vanity URL data from API. | false | 
Example(s)
This will return the uses of your guild’s vanity URL, fetching fresh data:
1client.command({2    name: "guildVanityUses",3    code: `4  $guildVanityUses[$guildID;true]5  `6});