trabajo-afectivo/lib/sequencer/sequence/import/freshdesk/agent.rb

27 lines
813 B
Ruby
Raw Normal View History

2021-05-25 12:30:12 +00:00
class Sequencer
class Sequence
module Import
module Freshdesk
class Agent < Sequencer::Sequence::Base
def self.sequence
[
'Common::ModelClass::User',
'Import::Freshdesk::Agent::Mapping',
'Import::Common::Model::Attributes::AddByIds',
'Import::Common::Model::FindBy::Name',
'Import::Common::Model::Update',
'Import::Common::Model::Create',
'Import::Common::Model::Save',
'Import::Freshdesk::MapId',
'Import::Common::Model::Statistics::Diff::ModelKey',
'Import::Common::ImportJob::Statistics::Update',
'Import::Common::ImportJob::Statistics::Store',
]
end
end
end
end
end
end