Class: OnyxCord::Components::Checkbox
- Inherits:
-
Object
- Object
- OnyxCord::Components::Checkbox
- Defined in:
- lib/onyxcord/models/component.rb
Overview
A checkbox that can be ticked in a modal.
Instance Attribute Summary collapse
-
#custom_id ⇒ String
readonly
The developer-defined identifier of the checkbox.
-
#id ⇒ Integer
readonly
The numeric identifier of the checkbox.
-
#value ⇒ true, false
(also: #value?)
readonly
Whether or not the checkbox was selected.
Instance Attribute Details
#custom_id ⇒ String (readonly)
Returns the developer-defined identifier of the checkbox.
580 581 582 |
# File 'lib/onyxcord/models/component.rb', line 580 def custom_id @custom_id end |
#id ⇒ Integer (readonly)
Returns the numeric identifier of the checkbox.
573 574 575 |
# File 'lib/onyxcord/models/component.rb', line 573 def id @id end |
#value ⇒ true, false (readonly) Also known as: value?
Returns whether or not the checkbox was selected.
576 577 578 |
# File 'lib/onyxcord/models/component.rb', line 576 def value @value end |