trabajo-afectivo/lib/sequencer/unit/import/freshdesk/resources.rb

19 lines
299 B
Ruby
Raw Normal View History

2021-05-25 12:30:12 +00:00
class Sequencer
class Unit
module Import
module Freshdesk
class Resources < Sequencer::Unit::Common::Provider::Named
uses :response
private
def resources
JSON.parse(response.body)
end
end
end
end
end
end