Class: Rubycord::EmbedImage
- Inherits:
-
Object
- Object
- Rubycord::EmbedImage
- Defined in:
- lib/rubycord/data/embed.rb
Overview
An Embed image for the embed object.
Instance Attribute Summary collapse
-
#embed ⇒ Embed
readonly
The embed object this is based on.
-
#height ⇒ Integer
readonly
The height of the image, in pixels.
-
#proxy_url ⇒ String
readonly
The proxy URL of the image.
-
#url ⇒ String
readonly
The source URL of the image.
-
#width ⇒ Integer
readonly
The width of the image, in pixels.
Instance Attribute Details
#embed ⇒ Embed (readonly)
Returns the embed object this is based on.
100 101 102 |
# File 'lib/rubycord/data/embed.rb', line 100 def @embed end |
#height ⇒ Integer (readonly)
Returns the height of the image, in pixels.
112 113 114 |
# File 'lib/rubycord/data/embed.rb', line 112 def height @height end |
#proxy_url ⇒ String (readonly)
Returns the proxy URL of the image.
106 107 108 |
# File 'lib/rubycord/data/embed.rb', line 106 def proxy_url @proxy_url end |
#url ⇒ String (readonly)
Returns the source URL of the image.
103 104 105 |
# File 'lib/rubycord/data/embed.rb', line 103 def url @url end |
#width ⇒ Integer (readonly)
Returns the width of the image, in pixels.
109 110 111 |
# File 'lib/rubycord/data/embed.rb', line 109 def width @width end |