# frozen_string_literal: true # TODO # This file is provided as an example and should be removed # See README for explanation # class Entities::SubEntities::ContactMapper # extend HashMapper # 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('address_work/billing/line1'), to('MailingStreet') # map from('address_work/billing/city'), to('MailingCity') # map from('address_work/billing/region'), to('MailingState') # map from('address_work/billing/postal_code'), to('MailingPostalCode') # map from('address_work/billing/country'), to('MailingCountry') # end