class PDFire::Conversion::Result

Attributes

expires_at[R]
runtime[R]
size[R]
url[R]

Public Class Methods

new(expires_at, size, width, height, runtime, url) click to toggle source
# File lib/conversion.rb, line 24
def initialize(expires_at, size, width, height, runtime, url)
  @expires_at = expires_at
  @size = size
  @width = width
  @height = height
  @runtime = runtime
  @url = url
end