Interface APIAnnouncement

interface APIAnnouncement {
    channelId: string;
    content: string;
    createdAt: string;
    createdBy: string;
    id: string;
    mentions?: APIMentions;
    serverId: string;
    title: string;
}

Properties

channelId: string

The ID of the channel

content: string

The content of the announcement

createdAt: string

The ISO 8601 timestamp that the announcement was created at

createdBy: string

The ID of the user who created this announcement

id: string

The ID of the announcement

mentions?: APIMentions
serverId: string

The ID of the server

title: string

The title of the announcement (min length 1; max length 128)