Interface InteractionCallbackResource<CH>

interface InteractionCallbackResource<CH> {
    activityInstance?: InteractionCallbackActivityInstance[];
    message?: Message<CH>;
    type: InteractionResponseTypes;
}

Type Parameters

Properties

Represents the Activity launched by this interaction. Only present if type is LAUNCH_ACTIVITY.

message?: Message<CH>

Message created by the interaction. Only present if type is either CHANNEL_MESSAGE_WITH_SOURCE or UPDATE_MESSAGE.