Chameleon
    Preparing search index...

    Interface Message

    interface Message {
        id: string;
        channelId: string;
        guildId?: string;
        author: User;
        member?: Member;
        content: string;
        url: string;
        timestamp: number;
        editedTimestamp: number | null;
        tts: boolean;
        mentionEveryone: boolean;
        mentions: User[];
        mentionRoles: string[];
        mentionChannels?: ChannelMention[];
        attachments: Attachment[];
        embeds: Embed[];
        reactions?: Reaction[];
        nonce?: string | number;
        pinned: boolean;
        webhookId?: string;
        type: number;
        activity?: MessageActivity;
        application?: Partial<Application>;
        applicationId?: string;
        flags?: number;
        messageReference?: MessageReference;
        messageSnapshots?: MessageSnapshot[];
        referencedMessage?: Message | null;
        interactionMetadata?: MessageInteractionMetadata;
        interaction?: MessageInteraction;
        thread?: Channel;
        components?: MessageComponent[];
        stickerItems?: StickerItem[];
        stickers?: Sticker[];
        position?: number;
        roleSubscriptionData?: RoleSubscriptionData;
        resolved?: ResolvedData;
        poll?: Poll;
        call?: MessageCall;
        sharedClientTheme?: SharedClientTheme;
    }
    Index

    Properties

    id: string
    channelId: string
    guildId?: string
    author: User
    member?: Member
    content: string
    url: string
    timestamp: number
    editedTimestamp: number | null
    tts: boolean
    mentionEveryone: boolean
    mentions: User[]
    mentionRoles: string[]
    mentionChannels?: ChannelMention[]
    attachments: Attachment[]
    embeds: Embed[]
    reactions?: Reaction[]
    nonce?: string | number
    pinned: boolean
    webhookId?: string
    type: number
    activity?: MessageActivity
    application?: Partial<Application>
    applicationId?: string
    flags?: number
    messageReference?: MessageReference
    messageSnapshots?: MessageSnapshot[]
    referencedMessage?: Message | null
    interactionMetadata?: MessageInteractionMetadata
    interaction?: MessageInteraction
    thread?: Channel
    components?: MessageComponent[]
    stickerItems?: StickerItem[]
    stickers?: Sticker[]
    position?: number
    roleSubscriptionData?: RoleSubscriptionData
    resolved?: ResolvedData
    poll?: Poll
    sharedClientTheme?: SharedClientTheme