Class: Discorb::ApplicationCommand::Command::SlashCommand

Inherits:
Discorb::ApplicationCommand::Command show all
Defined in:
lib/discorb/app_command.rb

Overview

Represents the slash command.

Instance Attribute Summary collapse

Attributes inherited from Discorb::ApplicationCommand::Command

#block, #guild_ids, #id_map, #name, #type, #type_raw

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?, #hash

Instance Attribute Details

#description -> String (readonly)

Returns The description of the command.

Returns:

  • (String)

    The description of the command.



188
189
190
# File 'lib/discorb/app_command.rb', line 188

def description
  @description
end

#options -> Hash{String => Hash} (readonly)

Returns The options of the command.

Returns:

  • (Hash{String => Hash})

    The options of the command.



190
191
192
# File 'lib/discorb/app_command.rb', line 190

def options
  @options
end

Instance Method Details

#to_s -> String

Returns the commands name.

Returns:

  • (String)

    The name of the command.



207
208
209
# File 'lib/discorb/app_command.rb', line 207

def to_s
  (@parent + " " + @name).strip
end