# ----------------------------------------------------------------------- # Copyright © 2012 ShepHertz Technologies Pvt Ltd. All rights reserved. # ----------------------------------------------------------------------- require 'App42Response.rb' # # # This ItemData object is the value object which contains the properties of # ItemData. # # module App42 module Shopping class ItemData < App42Response attr_accessor :itemId, :name, :description, :image, :price @ItemId @name @description @image @price end end end