Class: Discorb::ApplicationCommand::Command::SlashCommand
- Inherits:
-
Discorb::ApplicationCommand::Command
- Object
- DiscordModel
- Discorb::ApplicationCommand::Command
- Discorb::ApplicationCommand::Command::SlashCommand
- Defined in:
- lib/discorb/app_command.rb
Overview
Represents the slash command.
Instance Attribute Summary collapse
-
#description -> String
readonly
The description of the command.
-
#options -> Hash{String => Hash}
readonly
The options of the command.
Attributes inherited from Discorb::ApplicationCommand::Command
#block, #guild_ids, #id_map, #name, #type, #type_raw
Instance Method Summary collapse
-
#to_s -> String
Returns the commands name.
Methods inherited from DiscordModel
Instance Attribute Details
#description -> String (readonly)
Returns The description of the command.
199 200 201 |
# File 'lib/discorb/app_command.rb', line 199 def description @description end |
#options -> Hash{String => Hash} (readonly)
Returns The options of the command.
201 202 203 |
# File 'lib/discorb/app_command.rb', line 201 def @options end |
Instance Method Details
#to_s -> String
Returns the commands name.
218 219 220 |
# File 'lib/discorb/app_command.rb', line 218 def to_s (@parent + " " + @name).strip end |