Class: Discorb::Embed::Field
- Inherits:
-
Object
- Object
- Discorb::Embed::Field
- Defined in:
- lib/discorb/embed.rb
Overview
Represents a field of embed.
Instance Attribute Summary collapse
-
#inline -> Boolean
Whether the field is inline.
-
#name -> String
The name of field.
-
#value -> String
The value of field.
Instance Method Summary collapse
-
#initialize(name, value, inline: true) -> Field
constructor
Initialize a new Field object.
-
#to_hash -> Hash
Convert field to hash.
Constructor Details
#initialize(name, value, inline: true) -> Field
Initialize a new Field object.
202 203 204 205 206 |
# File 'lib/discorb/embed.rb', line 202 def initialize(name, value, inline: true) @name = name @value = value @inline = inline end |
Instance Attribute Details
#inline -> Boolean
Returns Whether the field is inline.
193 194 195 |
# File 'lib/discorb/embed.rb', line 193 def inline @inline end |
#name -> String
Returns The name of field.
189 190 191 |
# File 'lib/discorb/embed.rb', line 189 def name @name end |
#value -> String
Returns The value of field.
191 192 193 |
# File 'lib/discorb/embed.rb', line 191 def value @value end |
Instance Method Details
#to_hash -> Hash
Convert field to hash.
214 215 216 217 218 219 220 |
# File 'lib/discorb/embed.rb', line 214 def to_hash { name: @name, value: @value, inline: @inline, } end |