2016-12-19 08:59:54 +00:00
|
|
|
# this require is required (hehe) because of Rails autoloading
|
|
|
|
# which causes strange behavior not inheriting correctly
|
|
|
|
# from Import::OTRS::DynamicField
|
2018-04-26 08:55:53 +00:00
|
|
|
require_dependency 'import/zendesk/object_attribute/base'
|
2016-12-19 08:59:54 +00:00
|
|
|
|
|
|
|
module Import
|
2018-01-08 15:29:34 +00:00
|
|
|
class Zendesk
|
|
|
|
module ObjectAttribute
|
|
|
|
class Integer < Import::Zendesk::ObjectAttribute::Base
|
|
|
|
|
2016-12-19 08:59:54 +00:00
|
|
|
def init_callback(_object_attribte)
|
|
|
|
@data_option.merge!(
|
|
|
|
min: 0,
|
|
|
|
max: 999_999_999,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def data_type(_attribute)
|
|
|
|
'integer'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|