Sha256: 8f2acf41379c57bff76baf1ce9b3e8c5a9ebb237fec60c933e4282922f534fee
Contents?: true
Size: 624 Bytes
Versions: 43
Compression:
Stored size: 624 Bytes
Contents
# frozen_string_literal: true # TODO # This file is provided as an example and should be removed # See README for explanation # class Entities::SubEntities::LeadMapper # extend HashMapper # after_denormalize do |input, output| # output[:is_lead] = true # output # end # map from('title'), to('Salutation') # map from('first_name'), to('FirstName') # map from('last_name'), to('LastName'), default: 'Undefined' # map from('job_title'), to('Title') # map from('lead_source'), to('LeadSource') # map from('lead_status'), to('Status') # map from('lead_conversion_date'), to('ConvertedDate') # end
Version data entries
43 entries across 43 versions & 1 rubygems