Class: Discordrb::Attachment
- Inherits:
-
Object
- Object
- Discordrb::Attachment
- Includes:
- IDObject
- Defined in:
- lib/discordrb/data.rb
Overview
An attachment to a message
Instance Attribute Summary collapse
-
#filename ⇒ String
readonly
The attachment's filename.
-
#height ⇒ Integer?
readonly
The height of an image file, in pixels, or
nil
if the file is not an image. -
#message ⇒ Message
readonly
The message this attachment belongs to.
-
#proxy_url ⇒ String
readonly
The attachment's proxy URL - I'm not sure what exactly this does, but I think it has something to do with CDNs.
-
#size ⇒ Integer
readonly
The attachment's file size in bytes.
-
#url ⇒ String
readonly
The CDN URL this attachment can be downloaded at.
-
#width ⇒ Integer?
readonly
The width of an image file, in pixels, or
nil
if the file is not an image.
Attributes included from IDObject
Instance Method Summary collapse
-
#image? ⇒ true, false
Whether this file is an image file.
Methods included from IDObject
#==, #creation_time, synthesise
Instance Attribute Details
#filename ⇒ String (readonly)
Returns the attachment's filename.
2339 2340 2341 |
# File 'lib/discordrb/data.rb', line 2339 def filename @filename end |
#height ⇒ Integer? (readonly)
Returns the height of an image file, in pixels, or nil
if the file is not an image.
2348 2349 2350 |
# File 'lib/discordrb/data.rb', line 2348 def height @height end |
#message ⇒ Message (readonly)
Returns the message this attachment belongs to.
2329 2330 2331 |
# File 'lib/discordrb/data.rb', line 2329 def @message end |
#proxy_url ⇒ String (readonly)
Returns the attachment's proxy URL - I'm not sure what exactly this does, but I think it has something to do with CDNs.
2336 2337 2338 |
# File 'lib/discordrb/data.rb', line 2336 def proxy_url @proxy_url end |
#size ⇒ Integer (readonly)
Returns the attachment's file size in bytes.
2342 2343 2344 |
# File 'lib/discordrb/data.rb', line 2342 def size @size end |
#url ⇒ String (readonly)
Returns the CDN URL this attachment can be downloaded at.
2332 2333 2334 |
# File 'lib/discordrb/data.rb', line 2332 def url @url end |
#width ⇒ Integer? (readonly)
Returns the width of an image file, in pixels, or nil
if the file is not an image.
2345 2346 2347 |
# File 'lib/discordrb/data.rb', line 2345 def width @width end |
Instance Method Details
#image? ⇒ true, false
Returns whether this file is an image file.
2367 2368 2369 |
# File 'lib/discordrb/data.rb', line 2367 def image? !(@width.nil? || @height.nil?) end |