class BestBuy::Image
Attributes
height[R]
href[R]
primary[R]
rel[R]
unit_of_measure[R]
width[R]
Public Class Methods
new(init_params)
click to toggle source
# File lib/best_buy/models/image.rb, line 7 def initialize(init_params) @height = init_params[:height] @href = init_params[:href] @primary = init_params[:primary] @rel = init_params[:rel] @unit_of_measure = init_params[:unit_of_measure] @width = init_params[:width] end