# ----------------------------------------------------------------------- # Copyright © 2012 ShepHertz Technologies Pvt Ltd. All rights reserved. # ----------------------------------------------------------------------- require 'App42Response.rb' # # This Reward object is the value object which contains the properties of # Reward along with the setter & getter for those properties. # module App42 module Game class Reward < App42Response attr_accessor :gameName, :userName, :name, :points @gameName @userName @name @points end end end