Interface JSONAnnouncement

interface JSONAnnouncement {
    channelID: string;
    content: string;
    createdAt: Date;
    guildID: string;
    id: string;
    memberID: string;
    mentions: any;
    title: string;
}

Hierarchy

Properties

channelID: string

ID of the channel the announcement is in

content: string

The announcement's content

createdAt: Date

The ISO 8601 timestamp that the announcement was created at

guildID: string

ID of the guild.

id: string
memberID: string

The ID of the member who created this announcement

mentions: any

Mentions.

title: string

The announcement's title.