Class: Discorb::ApplicationCommand::Command::SubcommandGroup
- Inherits:
-
GroupCommand
- Object
- DiscordModel
- Discorb::ApplicationCommand::Command
- GroupCommand
- Discorb::ApplicationCommand::Command::SubcommandGroup
- Defined in:
- lib/discorb/app_command/command.rb
Overview
Represents the subcommand group.
Instance Attribute Summary collapse
-
#commands -> Array<Discorb::ApplicationCommand::Command::ChatInputCommand>
readonly
The subcommands of the command.
Attributes inherited from GroupCommand
Attributes inherited from Discorb::ApplicationCommand::Command
#block, #default_permission, #dm_permission, #guild_ids, #name, #type, #type_raw
Instance Method Summary collapse
-
#slash(command_name, description, options = {}, &block) -> Discorb::ApplicationCommand::Command::ChatInputCommand
Add new subcommand.
- #to_s -> Object
Methods inherited from GroupCommand
Methods inherited from DiscordModel
Instance Attribute Details
#commands -> Array<Discorb::ApplicationCommand::Command::ChatInputCommand> (readonly)
Returns The subcommands of the command.
360 361 362 |
# File 'lib/discorb/app_command/command.rb', line 360 def commands @commands end |
Instance Method Details
#slash(command_name, description, options = {}, &block) -> Discorb::ApplicationCommand::Command::ChatInputCommand
Add new subcommand.
386 387 388 389 390 391 392 393 394 |
# File 'lib/discorb/app_command/command.rb', line 386 def slash(command_name, description, = {}, &block) command = Discorb::ApplicationCommand::Command::ChatInputCommand.new( command_name, description, , [], block, 1, self, nil, nil ) @commands << command @client.callable_commands << command command end |
#to_s -> Object
377 378 379 |
# File 'lib/discorb/app_command/command.rb', line 377 def to_s "#{@parent} #{@name}" end |