require 'App42Response.rb' module App42 module AppTab # # # This License object is the value object which contains the properties of # License along with the setter & getter for those properties. # # class License < App42Response attr_accessor :name, :transacId, :price, :currency, :state, :description, :user, :issueDate, :key, :valid @name @price @currency @state @description @user @issueDate @key @valid @transacId end end end