Sha256: d717581bb70abf89926d78233f8c49619eca80cc50fcbbe4677596e76ee3f14c
Contents?: true
Size: 404 Bytes
Versions: 7
Compression:
Stored size: 404 Bytes
Contents
require 'rets4r/client/data' module RETS4R class Client # Represents a set of metadata. It is simply an extended Array with type and attributes accessors. class Metadata < Array attr_accessor :type, :attributes def initialize(type = false) self.type = type if type self.attributes = {} end end end end
Version data entries
7 entries across 7 versions & 3 rubygems