Class: Discorb::MessageComponentInteraction::SelectMenu
- Inherits:
-
Discorb::MessageComponentInteraction
- Object
- DiscordModel
- Interaction
- Discorb::MessageComponentInteraction
- Discorb::MessageComponentInteraction::SelectMenu
- Defined in:
- lib/discorb/interaction.rb
Overview
Represents a select menu interaction.
Instance Attribute Summary collapse
-
#custom_id -> String
readonly
The custom id of the select menu.
- #value -> Object readonly
-
#values -> Array<String>
readonly
The selected options.
Attributes inherited from Interaction
#application_id, #id, #member, #token, #type, #user, #version
Method Summary
Methods included from Interaction::UpdateResponse
Methods included from Interaction::SourceResponse
Methods inherited from Interaction
#channel, #guild, #inspect, #target
Methods inherited from DiscordModel
Instance Attribute Details
#custom_id -> String (readonly)
Returns The custom id of the select menu.
426 427 428 |
# File 'lib/discorb/interaction.rb', line 426 def custom_id @custom_id end |
#value -> Object (readonly)
433 434 435 |
# File 'lib/discorb/interaction.rb', line 433 def value @values[0] end |
#values -> Array<String> (readonly)
Returns The selected options.
428 429 430 |
# File 'lib/discorb/interaction.rb', line 428 def values @values end |