Class: ContextMenuCommandInteraction
Hierarchy
-
BaseContext
↳ContextMenuCommandInteraction
↳↳MessageContextMenuCommandInteraction
↳↳UserContextMenuCommandInteraction
Table of contents
Constructors
Properties
Methods
Constructors
constructor
• new ContextMenuCommandInteraction(client
, data
): ContextMenuCommandInteraction
Represents a context menu command
Parameters
Name | Type | Description |
---|---|---|
client | YorClient | The client object. |
data | APIUserApplicationCommandInteraction | APIMessageApplicationCommandInteraction | The data object. |
Returns
ContextMenuCommandInteraction
Overrides
BaseContext.constructorDefined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:31Properties
applicationId
• applicationId:string
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:23client
• client:YorClient
Inherited from
BaseContext.clientDefined in
src/structures/Base.ts:4interactionId
• interactionId:string
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:22raw
• raw:APIUserApplicationCommandInteraction
| APIMessageApplicationCommandInteraction
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:16targetId
• targetId:string
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:21token
• token:string
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:20Methods
decorate
▸ decorate(name
, data
): unknown
Decorates the object with a new property.
Parameters
Name | Type | Description |
---|---|---|
name | string | The name of the property. |
data | unknown | The data to assign to the property. |
Returns
unknown
The decorated object.
Inherited from
BaseContext.decorateDefined in
src/structures/Contexts/BaseContext.ts:22defer
▸ defer(ephemeral?
): Promise
<void
>
Defers the execution of the function.
Parameters
Name | Type | Default value | Description |
---|---|---|---|
ephemeral | boolean | false | Whether the message is ephemeral or not. |
Returns
Promise
<void
>
A promise that resolves when the deferral is complete.
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:53deleteReply
▸ deleteReply():Promise
<void
>
Deletes a reply.
Returns
Promise
<void
>
A promise that resolves when the reply is deleted.
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:126editReply
▸ editReply(data
): Promise
<APIMessage
>
Edits a reply.
Parameters
Name | Type | Description |
---|---|---|
data | Omit <RESTPostAPIWebhookWithTokenJSONBody , "username" | "avatar_url" > & { flags? : MessageFlags } & { files? : RawFile [] } | The data for editing the reply. |
Returns
Promise
<APIMessage
>
A promise that resolves when the reply is edited.
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:100fetchReply
▸ fetchReply():Promise
<APIMessage
>
Fetches the reply asynchronously.
Returns
Promise
<APIMessage
>
A promise that resolves when the original reply is fetched.
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:138followUp
▸ followUp(data
): Promise
<APIMessage
>
Calls the followUp method of the API class with the provided data.
Parameters
Name | Type | Description |
---|---|---|
data | Omit <RESTPostAPIWebhookWithTokenJSONBody , "username" | "avatar_url" > & { flags? : MessageFlags } & { files? : RawFile [] } | The data to be passed to the followUp method. |
Returns
Promise
<APIMessage
>
A promise that resolves to an APIMessage object.
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:175reply
▸ reply(data
): Promise
<void
>
Replies to an interaction.
Parameters
Name | Type | Description |
---|---|---|
data | Omit <RESTPostAPIWebhookWithTokenJSONBody , "username" | "avatar_url" > & { flags? : MessageFlags } & { files? : RawFile [] } | The data for creating the reply. |
Returns
Promise
<void
>
A promise that resolves when the reply is sent.
Defined in
src/structures/Contexts/ContextMenu/ContextMenuCommandInteraction.ts:73replyModal
▸ replyModal(data
): Promise
<void
>
Reply to a modal.
Parameters
Name | Type | Description |
---|---|---|
data | APIModalInteractionResponseCallbackData | The data for creating the modal. |
Returns
Promise
<void
>
A promise that resolves when the modal is created.