attributes_examples.rb 595 B

12345678910111213141516171819202122232425
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. class Sequencer
  3. class Sequence
  4. module Import
  5. module Exchange
  6. class AttributesExamples < Sequencer::Sequence::Base
  7. def self.expecting
  8. [:attributes]
  9. end
  10. def self.sequence
  11. [
  12. 'Exchange::Connection',
  13. 'Exchange::Folders::ByIds',
  14. 'Import::Exchange::AttributeExamples',
  15. 'Import::Exchange::AttributeMapper::AttributeExamples',
  16. ]
  17. end
  18. end
  19. end
  20. end
  21. end
  22. end