seyfert
    Preparing search index...

    Interface EntryPointWithResponseResult

    interface EntryPointWithResponseResult {
        interaction: {
            activityInstanceId?: string;
            id: string;
            responseMessageEphemeral?: boolean;
            responseMessageId?: string;
            responseMessageLoading?: boolean;
            type: InteractionType;
        };
        resource?: | {
            activityInstance: InteractionCallbackResourceActivity;
            type: LaunchActivity;
        }
        | {
            message: WebhookMessage;
            type: | Pong
            | ChannelMessageWithSource
            | DeferredChannelMessageWithSource
            | DeferredMessageUpdate
            | UpdateMessage
            | ApplicationCommandAutocompleteResult
            | Modal;
        };
    }
    Index

    Properties

    interaction: {
        activityInstanceId?: string;
        id: string;
        responseMessageEphemeral?: boolean;
        responseMessageId?: string;
        responseMessageLoading?: boolean;
        type: InteractionType;
    }
    resource?:
        | {
            activityInstance: InteractionCallbackResourceActivity;
            type: LaunchActivity;
        }
        | {
            message: WebhookMessage;
            type: | Pong
            | ChannelMessageWithSource
            | DeferredChannelMessageWithSource
            | DeferredMessageUpdate
            | UpdateMessage
            | ApplicationCommandAutocompleteResult
            | Modal;
        }