Class: Discordrb::Components::RadioGroup
- Inherits:
-
Object
- Object
- Discordrb::Components::RadioGroup
- Defined in:
- lib/discordrb/data/component.rb
Overview
A grouping of radio buttons in a modal.
Instance Attribute Summary collapse
-
#custom_id ⇒ String
readonly
The developer-defined identifier of the radio group.
-
#id ⇒ Integer
readonly
The numeric identifier of the radio group.
-
#value ⇒ String?
readonly
Whether or not a radio button was selected.
Instance Attribute Details
#custom_id ⇒ String (readonly)
Returns the developer-defined identifier of the radio group.
525 526 527 |
# File 'lib/discordrb/data/component.rb', line 525 def custom_id @custom_id end |
#id ⇒ Integer (readonly)
Returns the numeric identifier of the radio group.
519 520 521 |
# File 'lib/discordrb/data/component.rb', line 519 def id @id end |
#value ⇒ String? (readonly)
Returns whether or not a radio button was selected.
522 523 524 |
# File 'lib/discordrb/data/component.rb', line 522 def value @value end |