Sha256: 123ea1f3fb21dd76c47a52e9b93fcd62e8a4ecf1ea8d61a92df4330cb2c0e2b9
Contents?: true
Size: 440 Bytes
Versions: 3
Compression:
Stored size: 440 Bytes
Contents
module Exlibris module Aleph module API module Client class Patron class Address < Base attr_reader :patron_id def initialize(patron_id) @patron_id = patron_id end protected def path @path ||= "#{super}/patron/#{patron_id}/patronInformation/address" end end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems