export interface InteractionReplyOptions extends BaseMessageOptions, MessageOptionsPollOptions for a reply to a BaseInteraction.
optionalallowedMentions? : MessageMentionOptions
Which mentions should be parsed from the message content (see here for more details)
Inherited from: BaseMessageOptions
optionalcomponents? : readonly ( | ActionRowData<MessageActionRowComponentBuilder | MessageActionRowComponentData> | APIMessageTopLevelComponent | JSONEncodable<APIActionRowComponent<APIComponentInActionRow>> | JSONEncodable<APIMessageTopLevelComponent> | TopLevelComponentData )[]
Action rows containing interactive components for the message (buttons, select menus) and other top-level components. When using components v2, the flag MessageFlags needs to be set and content, embeds, stickers, and poll cannot be used.
Inherited from: BaseMessageOptions
optionalcontent? : string = ''
The content for the message. This can only be null when editing a message.
Inherited from: BaseMessageOptions
optionalembeds? : readonly (APIEmbed | JSONEncodable<APIEmbed>)[]
The embeds for the message
Inherited from: BaseMessageOptions
optionalfiles? : readonly ( | Attachment | AttachmentBuilder | AttachmentPayload | BufferResolvable | JSONEncodable<APIAttachment> | Stream )[]
The files to send with the message.
Inherited from: BaseMessageOptions
optionalflags? : BitFieldResolvable<Extract<MessageFlagsString, 'Ephemeral' | 'IsComponentsV2' | 'IsVoiceMessage' | 'SuppressEmbeds' | 'SuppressNotifications'>, | MessageFlags.Ephemeral | MessageFlags.IsComponentsV2 | MessageFlags.IsVoiceMessage | MessageFlags.SuppressEmbeds | MessageFlags.SuppressNotifications> | undefined
Which flags to set for the message. Only MessageFlags, MessageFlags, MessageFlags, and MessageFlags can be set.
optionalpoll? : JSONEncodable<RESTAPIPoll> | PollData
Inherited from: MessageOptionsPoll
optionaltts? : boolean = false
Whether the message should be spoken aloud
optionalwithResponse? : boolean
Whether to return an InteractionCallbackResponse as the response