Class: Discorb::MessageComponentInteraction::SelectMenu

Inherits:
Discorb::MessageComponentInteraction show all
Defined in:
lib/discorb/interaction/components.rb

Overview

Represents a select menu interaction.

Instance Attribute Summary collapse

Attributes inherited from Discorb::MessageComponentInteraction

#message

Attributes inherited from Interaction

#application_id, #guild_locale, #id, #locale, #member, #token, #type, #user, #version

Method Summary

Methods included from Interaction::UpdateResponse

#defer_update, #edit

Methods included from Interaction::SourceResponse

#defer_source, #post

Methods inherited from Interaction

#channel, #guild, #inspect, #target

Methods inherited from DiscordModel

#==, #eql?, #hash

Instance Attribute Details

#custom_id -> String (readonly)

Returns The custom id of the select menu.

Returns:

  • (String)

    The custom id of the select menu.



66
67
68
# File 'lib/discorb/interaction/components.rb', line 66

def custom_id
  @custom_id
end

#value -> Object (readonly)



73
74
75
# File 'lib/discorb/interaction/components.rb', line 73

def value
  @values[0]
end

#values -> Array<String> (readonly)

Returns The selected options.

Returns:

  • (Array<String>)

    The selected options.



68
69
70
# File 'lib/discorb/interaction/components.rb', line 68

def values
  @values
end