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
Readonly
itemsThe list items in this channel.
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
Creates a list item in this channel.
The message of the new list item.
Optional
note: stringOptional note for the new list item.
A Promise that resolves with the newly created list item payload.
Fetches a list item by its ID.
The ID of the list item to fetch.
A Promise that resolves with the list item payload.
Fetches all list items in this channel.
A Promise that resolves with an array of list item summary payloads.
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
Represents a list channel in Guilded.