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.
Readonly
docsThe docs in this 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
Create a new doc in this channel.
The options for creating the doc.
A promise that resolves with the created doc.
Get a specific doc from this channel.
The ID ofDocPayload the doc to fetch.
A promise that resolves with the fetched doc.
Get all the docs from this channel.
A promise that resolves with an array of all docs.
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.
Update a specific doc in this channel.
The ID of the doc to update.
The options for updating the doc.
A promise that resolves with the updated doc.
Generated using TypeDoc
Represents a doc channel on Guilded