trabajo-afectivo/lib/sequencer/unit/import/zendesk/ticket/comment/to.rb

28 lines
680 B
Ruby
Raw Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sequencer
class Unit
module Import
module Zendesk
module Ticket
module Comment
class To < Sequencer::Unit::Import::Zendesk::Ticket::Comment::SourceBased
private
def email
# Notice resource.via.from.original_recipients = [\"another@gmail.com\", \"support@example.zendesk.com\"]
resource.via.source.to.address
end
def facebook
resource.via.source.to.facebook_id
end
end
end
end
end
end
end
end