Interface IApplicationCommandInteractionData
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
Represents data of an Interaction Command, see https://discord.com/developers/docs/interactions/slash-commands#interaction-applicationcommandinteractiondata.
public interface IApplicationCommandInteractionData : IDiscordInteractionData
Properties
Id
Gets the snowflake id of this command.
ulong Id { get; }
Property Value
Name
Gets the name of this command.
string Name { get; }
Property Value
Options
Gets the options that the user has provided.
IReadOnlyCollection<IApplicationCommandInteractionDataOption> Options { get; }