trabajo-afectivo/lib/import/zendesk/object_attribute/text.rb

21 lines
377 B
Ruby
Raw Normal View History

module Import
module Zendesk
class ObjectAttribute
class Text < Import::Zendesk::ObjectAttribute
def init_callback(_object_attribte)
@data_option.merge!(
type: 'text',
maxlength: 255,
)
end
private
def data_type(_attribute)
'input'
end
end
end
end
end