@typed-discord/rest
    Preparing search index...

    Interface SearchMessageResponse

    interface SearchMessageResponse {
        activity?: MessageActivityResponse;
        application?: BasicApplicationResponseWithBot;
        application_id?: `${bigint}`;
        attachments: MessageAttachmentResponse[];
        author: UserResponse;
        call?: MessageCallResponse;
        channel_id: `${bigint}`;
        components: (
            | ActionRowComponentResponse
            | ContainerComponentResponse
            | FileComponentResponse
            | MediaGalleryComponentResponse
            | SectionComponentResponse
            | SeparatorComponentResponse
            | TextDisplayComponentResponse
        )[];
        content: string;
        edited_timestamp: string
        | null;
        embeds: MessageEmbedResponse[];
        flags: number;
        hit: boolean;
        id: `${bigint}`;
        interaction?: MessageInteractionResponse;
        interaction_metadata?:
            | ApplicationCommandInteractionMetadataResponse
            | MessageComponentInteractionMetadataResponse
            | ModalSubmitInteractionMetadataResponse;
        mention_channels?: MessageMentionChannelResponse[];
        mention_everyone: boolean;
        mention_roles: `${bigint}`[];
        mentions: UserResponse[];
        message_reference?: MessageReferenceResponse;
        message_snapshots?: MessageSnapshotResponse[];
        nonce?: string
        | number;
        pinned: boolean;
        poll?: PollResponse;
        position?: number;
        purchase_notification?: PurchaseNotificationResponse;
        reactions?: MessageReactionResponse[];
        referenced_message?: BasicMessageResponse | null;
        resolved?: ResolvedObjectsResponse;
        role_subscription_data?: MessageRoleSubscriptionDataResponse;
        shared_client_theme?: CustomClientThemeResponse;
        sticker_items?: MessageStickerItemResponse[];
        stickers?: (GuildStickerResponse | StandardStickerResponse)[];
        thread?: ThreadResponse;
        timestamp: string;
        tts: boolean;
        type: MessageType;
        webhook_id?: `${bigint}`;
    }
    Index

    Properties

    application_id?: `${bigint}`
    author: UserResponse
    channel_id: `${bigint}`
    content: string
    edited_timestamp: string | null
    flags: number
    hit: boolean
    id: `${bigint}`
    mention_channels?: MessageMentionChannelResponse[]
    mention_everyone: boolean
    mention_roles: `${bigint}`[]
    mentions: UserResponse[]
    message_reference?: MessageReferenceResponse
    message_snapshots?: MessageSnapshotResponse[]
    nonce?: string | number
    pinned: boolean
    position?: number
    purchase_notification?: PurchaseNotificationResponse
    referenced_message?: BasicMessageResponse | null
    role_subscription_data?: MessageRoleSubscriptionDataResponse
    shared_client_theme?: CustomClientThemeResponse
    sticker_items?: MessageStickerItemResponse[]
    timestamp: string
    tts: boolean
    webhook_id?: `${bigint}`