The timestamp when the channel was archived.
The timestamp when the channel was created.
The timestamp when the channel was last updated.
The user ID of the user who archived the channel.
The ID of the category that the channel belongs to.
Readonly
clientThe user ID of the user who created the channel.
The ID of the group that the channel belongs to.
Identifier of this structrure
The name of the channel.
The ID of the parent channel.
Bare data of this structure
The ID of the server that the channel belongs to.
The topic of the channel.
The type of the channel.
The visibility state of the channel.
The timestamp when the channel was archived as a Date object, or null if the channel is not archived.
The timestamp when the channel was created as a Date object.
The timestamp when the channel was last updated as a Date object, or null if the channel has not been updated.
Taken from https://github.com/discordjs/discord.js/blob/8e8d9b490a71de6cabe6f16375d7549a7c5c3737/src/structures/Base.js#L20 Licensed under the Apache License 2.0 https://github.com/discordjs/discord.js/blob/8e8d9b490a71de6cabe6f16375d7549a7c5c3737/LICENSE
Send a message in the channel.
let replyObj = {
content: 'This is text, supports **markdown**.',
embeds: [{
title: 'This is an embed title!',
description: 'A description may go here'
}]
};
channel.send(replyObj)
The content of the message.
Generated using TypeDoc
A channel used for chat communication.