Class: Discorb::Embed::Thumbnail
- Inherits:
-
Entry
- Object
- Entry
- Discorb::Embed::Thumbnail
- Defined in:
- lib/discorb/embed.rb
Overview
Represents a thumbnail of embed.
Instance Attribute Summary collapse
- #height -> Integer? readonly
- #proxy_url -> String? readonly
-
#url -> String
The url of thumbnail.
- #width -> Integer? readonly
Instance Method Summary collapse
-
#initialize(url) -> Thumbnail
constructor
Initialize a new Thumbnail object.
-
#to_hash -> Hash
Convert thumbnail to hash for sending.
Constructor Details
#initialize(url) -> Thumbnail
Initialize a new Thumbnail object.
311 312 313 314 315 316 317 318 319 320 321 |
# File 'lib/discorb/embed.rb', line 311 def initialize(url) data = url if data.is_a? String @url = data else @url = data[:url] @proxy_url = data[:proxy_url] @height = data[:height] @width = data[:width] end end |
Instance Attribute Details
#height -> Integer? (readonly)
301 302 303 |
# File 'lib/discorb/embed.rb', line 301 def height @height end |
#proxy_url -> String? (readonly)
298 299 300 |
# File 'lib/discorb/embed.rb', line 298 def proxy_url @proxy_url end |
#url -> String
Returns The url of thumbnail.
295 296 297 |
# File 'lib/discorb/embed.rb', line 295 def url @url end |
#width -> Integer? (readonly)
304 305 306 |
# File 'lib/discorb/embed.rb', line 304 def width @width end |
Instance Method Details
#to_hash -> Hash
Convert thumbnail to hash for sending.
329 330 331 |
# File 'lib/discorb/embed.rb', line 329 def to_hash { url: @url } end |