Sha256: d0335036c532c39a08b0bb9b5adf184407435a480c3ce55e6d1378af789156f9
Contents?: true
Size: 429 Bytes
Versions: 18
Compression:
Stored size: 429 Bytes
Contents
module Notifications class Client class ReceivedTextCollection attr_reader :links, :collection def initialize(response) @links = response["links"] @collection = collection_from(response["received_text_messages"]) end def collection_from(received_texts) received_texts.map do |received_text| ReceivedText.new(received_text) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems