class AboutYou::SDK::Model::ImageSize
This class represents the image size of an image
Attributes
height[RW]
Integer height
width[RW]
Integer width
Public Class Methods
new(width, height)
click to toggle source
Constructor for the AboutYou::SDK::Model::ImageSize
class
-
Returns :
-
an instance of
AboutYou::SDK::Model::ImageSize
-
# File lib/AboutYou/Model/image_size.rb, line 19 def initialize(width, height) self.width = width self.height = height self end