Class: Discordrb::EmbedField
- Inherits:
-
Object
- Object
- Discordrb::EmbedField
- Defined in:
- lib/discordrb/data/embed.rb
Overview
An Embed field for the embed object
Instance Attribute Summary collapse
-
#embed ⇒ Embed
readonly
The embed object this is based on.
-
#inline ⇒ true, false
readonly
Whether this field is inline.
-
#name ⇒ String
readonly
The field's name.
-
#value ⇒ String
readonly
The field's value.
Instance Attribute Details
#embed ⇒ Embed (readonly)
Returns the embed object this is based on.
238 239 240 |
# File 'lib/discordrb/data/embed.rb', line 238 def @embed end |
#inline ⇒ true, false (readonly)
Returns whether this field is inline.
247 248 249 |
# File 'lib/discordrb/data/embed.rb', line 247 def inline @inline end |
#name ⇒ String (readonly)
Returns the field's name.
241 242 243 |
# File 'lib/discordrb/data/embed.rb', line 241 def name @name end |
#value ⇒ String (readonly)
Returns the field's value.
244 245 246 |
# File 'lib/discordrb/data/embed.rb', line 244 def value @value end |