Type alias ForumTopicPayload

ForumTopicPayload: {
    bumpedAt?: string;
    channelId: string;
    content: string;
    createdAt: string;
    createdBy: string;
    id: number;
    isLocked?: boolean;
    isPinned?: boolean;
    mentions?: MentionsPayload;
    serverId: string;
    title: string;
    updatedAt?: string;
}

Type declaration

  • Optional bumpedAt?: string

    The ISO 8601 timestamp that the forum topic was bumped at. This timestamp is updated whenever there is any activity on the posts within the forum topic.

  • channelId: string

    The ID of the channel

  • content: string

    The content of the forum topic

  • createdAt: string

    The ISO 8601 timestamp that the forum topic was created at

  • createdBy: string

    The ID of the user who created this forum topic (Note: If this event has createdByWebhookId present, this field will still be populated, but can be ignored. In this case, the value of this field will always be Ann6LewA)

  • id: number

    The ID of the forum topic

  • Optional isLocked?: boolean
  • Optional isPinned?: boolean
  • Optional mentions?: MentionsPayload
  • serverId: string

    The ID of the server

  • title: string

    The title of the forum topic

  • Optional updatedAt?: string

    The ISO 8601 timestamp that the forum topic was updated at, if relevant

Generated using TypeDoc