Sha256: fd807b86eb2b746f0540b2fcddd83f0fe1f640e7cbc175577afbeb55ecab2293
Contents?: true
Size: 278 Bytes
Versions: 13
Compression:
Stored size: 278 Bytes
Contents
module RETS4R class Client # Represents a row of data. Nothing more than a glorfied Hash with a custom constructor and a # type attribute. class Data < ::Hash attr_accessor :type def initialize(type = false) super self.type = type end end end end
Version data entries
13 entries across 13 versions & 3 rubygems