Type Alias PossiblyUncachedMessage

PossiblyUncachedMessage:
    | Message<AnyTextableChannel>
    | {
        channelID: string;
        deletedAt: Date;
        guildID: string;
        id: string;
        isPrivate: boolean | null;
    }

Type declaration

  • Message<AnyTextableChannel>
  • {
        channelID: string;
        deletedAt: Date;
        guildID: string;
        id: string;
        isPrivate: boolean | null;
    }
    • channelID: string

      ID of the channel where the message was sent.

    • deletedAt: Date

      When the message was deleted.

    • guildID: string

      ID of the server on which the message was sent.

    • id: string

      The ID of the message.

    • isPrivate: boolean | null

      If true, the message is private.

MMNEPVFCICPMFPCPTTAAATR