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

Inherits:
Discorb::ApplicationCommand::Command show all
Defined in:
lib/discorb/app_command/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?, #inspect

Instance Attribute Details

#description -> String (readonly)

Returns The description of the command.

Returns:

  • (String)

    The description of the command.



85
86
87
# File 'lib/discorb/app_command/command.rb', line 85

def description
  @description
end

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

Returns The options of the command.

Returns:

  • (Hash{String => Hash})

    The options of the command.



87
88
89
# File 'lib/discorb/app_command/command.rb', line 87

def options
  @options
end

Instance Method Details

#to_s -> String

Returns the commands name.

Returns:

  • (String)

    The name of the command.



115
116
117
# File 'lib/discorb/app_command/command.rb', line 115

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