Module: LeadMapping

Included in:
CrmLeadRepository
Defined in:
lib/crm_integration/lead_mapping.rb

Instance Method Summary collapse

Instance Method Details

#map_from(rd_lead) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
# File 'lib/crm_integration/lead_mapping.rb', line 3

def map_from(rd_lead)
  {
    first_name: rd_lead.first_name,
    last_name: rd_lead.last_name,
    company: rd_lead.company,
    email: rd_lead.email,
    designation: rd_lead.job_title,
    phone: rd_lead.phone,
    website: rd_lead.website
  }
end