interface InteractionReplyOptions
extends
BaseMessageOptionsWithPollexport interface InteractionReplyOptions extends BaseMessageOptionsWithPollOptions 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 (  | JSONEncodable<APIMessageTopLevelComponent>  | TopLevelComponentData  | ActionRowData<MessageActionRowComponentData | MessageActionRowComponentBuilder>  | APIMessageTopLevelComponent )[] 
Action rows containing interactive components for the message (buttons, select menus) and other top-level components. When using components v2, the flag MessageFlags.IsComponentsV2 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 (JSONEncodable<APIEmbed> | APIEmbed)[] 
The embeds for the message
Inherited from: BaseMessageOptions
optionalephemeral? : boolean 
Whether the reply should be ephemeral. This option is deprecated. Use flags instead.
optionalfetchReply? : boolean 
Whether to fetch the reply This option is deprecated. Use withResponse or fetch the response instead.
optionalfiles? : readonly (  | BufferResolvable  | Stream  | JSONEncodable<APIAttachment>  | Attachment  | AttachmentBuilder  | AttachmentPayload )[] 
The files to send with the message.
Inherited from: BaseMessageOptions
optionalflags? :  BitFieldResolvable<Extract<MessageFlagsString, 'Ephemeral' | 'SuppressEmbeds' | 'SuppressNotifications' | 'IsComponentsV2'>,    | MessageFlags.Ephemeral    | MessageFlags.SuppressEmbeds    | MessageFlags.SuppressNotifications    | MessageFlags.IsComponentsV2>  | undefined 
Which flags to set for the message. Only MessageFlags.Ephemeral, MessageFlags.SuppressEmbeds, and MessageFlags.SuppressNotifications can be set.
optionalpoll? : PollData 
The poll to send with the message
Inherited from: BaseMessageOptionsWithPoll
optionaltts? : boolean = false
Whether the message should be spoken aloud
optionalwithResponse? : boolean 
Whether to return an InteractionCallbackResponse as the response