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 for the radio group.
-
#id ⇒ Integer
readonly
The numeric identifier of the radio group.
-
#value ⇒ true, false
(also: #value?)
readonly
Whether or not a radio button was selected.
Instance Attribute Details
#custom_id ⇒ String (readonly)
Returns the developer-defined identifier for the radio group.
526 527 528 |
# File 'lib/discordrb/data/component.rb', line 526 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 ⇒ true, false (readonly) Also known as: value?
Returns whether or not a radio button was selected.
522 523 524 |
# File 'lib/discordrb/data/component.rb', line 522 def value @value end |