class TicketflyPlus::Objects::ImageDetails

Attributes

height[RW]
path[RW]
width[RW]

Public Class Methods

new(image_details) click to toggle source
# File lib/ticketfly_plus/objects.rb, line 224
def initialize(image_details)
    @height = image_details['height']
    @path = image_details['path']
    @width = image_details['width']
end