Sha256: 3aea91ec76cb7aee3a92d016b24f83455cf45cb294ac6ddd8a454a1a69747131
Contents?: true
Size: 331 Bytes
Versions: 13
Compression:
Stored size: 331 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
13 entries across 13 versions & 3 rubygems