Sha256: ffc1164386907de078c46b8f4f48f043e77e4dcff55db1a6c33332256fc25f10
Contents?: true
Size: 435 Bytes
Versions: 23
Compression:
Stored size: 435 Bytes
Contents
module Notifications class Client class NotificationsCollection attr_reader :links, :collection def initialize(response) @links = response["links"] @collection = collection_from(response["notifications"]) end def collection_from(notifications) notifications.map do |notification| Notification.new(notification) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems