Class: Discorb::Embed::Footer
- Inherits:
-
Entry
- Object
- Entry
- Discorb::Embed::Footer
- Defined in:
- lib/discorb/embed.rb
Overview
Represemts a footer of embed.
Instance Attribute Summary collapse
-
#icon -> Object
Returns the value of attribute icon.
-
#text -> Object
Returns the value of attribute text.
Instance Method Summary collapse
-
#initialize(text, icon: nil) -> Footer
constructor
Initialize a new Footer object.
-
#to_hash -> Hash
Convert footer to hash.
Constructor Details
#initialize(text, icon: nil) -> Footer
Initialize a new Footer object.
188 189 190 191 |
# File 'lib/discorb/embed.rb', line 188 def initialize(text, icon: nil) @text = text @icon = icon end |
Instance Attribute Details
#icon -> Object
Returns the value of attribute icon.
180 181 182 |
# File 'lib/discorb/embed.rb', line 180 def icon @icon end |
#text -> Object
Returns the value of attribute text.
180 181 182 |
# File 'lib/discorb/embed.rb', line 180 def text @text end |
Instance Method Details
#to_hash -> Hash
Convert footer to hash.
199 200 201 202 203 204 |
# File 'lib/discorb/embed.rb', line 199 def to_hash { text: @text, icon_url: @icon, } end |