The client the channels belong to.
Readonly
cacheThis cache of the manager.
Readonly
clientCreate a channel on Guilded.
The created channel.
channels.create({ name: 'Chat', type: 'chat' });
The payload of the channel.
Edit a channel on Guilded.
The edited channel.
channels.edit(channel, { name: 'Chat' });
The channel to edit.
The payload of the channel.
Fetch a channel from Guilded, or cache.
The fetched channel.
channels.fetch(channel);
The channel to fetch.
Optional
options: FetchOptionsThe options to fetch the channel with.
Set the maximum cache size of the manager.
The manager.
manager.setMaxCache(100);
The maximum size of the cache.
The manager of channels that belong to the client.
Example