Sha256: 3e7024a5e114956eea9b37cc05b04d7dfcfd357a455700e52b5cb00c324e5fae
Contents?: true
Size: 596 Bytes
Versions: 13
Compression:
Stored size: 596 Bytes
Contents
$lib = File.expand_path('../', File.dirname(__FILE__)) class Review attr_accessor :platform, :id, :userName, :rating, :title, :body, :createdDateTimestamp, :url, :appVersion, :territory def initialize(platform, id, userName, rating, title, body, createdDateTimestamp, url, appVersion, territory) @platform = platform @id = id @userName = userName @rating = rating @title = title @body = body @createdDateTimestamp = createdDateTimestamp @url = url @appVersion = appVersion @territory = territory end end
Version data entries
13 entries across 13 versions & 1 rubygems