2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-10-20 09:43:35 +00:00
|
|
|
|
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Kayako
|
|
|
|
class Request < Sequencer::Unit::Common::Provider::Attribute
|
|
|
|
class Generic
|
|
|
|
attr_reader :object, :request_params
|
|
|
|
|
|
|
|
def initialize(object:, request_params:)
|
|
|
|
@object = object
|
|
|
|
@request_params = request_params
|
|
|
|
end
|
|
|
|
|
|
|
|
def api_path
|
|
|
|
object.underscore.split('_').map(&:pluralize).join('/')
|
|
|
|
end
|
|
|
|
|
|
|
|
def params
|
|
|
|
request_params.merge(
|
|
|
|
limit: 100,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|