Class: Discorb::Command::Command::SlashCommand
- Inherits:
-
Discorb::Command::Command
- Object
- DiscordModel
- Discorb::Command::Command
- Discorb::Command::Command::SlashCommand
- Defined in:
- lib/discorb/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::Command::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.
167 168 169 |
# File 'lib/discorb/command.rb', line 167 def description @description end |
#options ⇒ Hash{String => Hash} (readonly)
Returns The options of the command.
169 170 171 |
# File 'lib/discorb/command.rb', line 169 def @options end |
Instance Method Details
#to_s ⇒ String
Returns the commands name.
189 190 191 |
# File 'lib/discorb/command.rb', line 189 def to_s (@parent + " " + @name).strip end |