pub enum Source {
WebsiteForm,
Phone,
Sms,
Email,
SocialMedia,
LocalReferral {
source_name: SourceName,
},
Campaign {
name: CampaignName,
},
}Expand description
Lead source retained so marketing and intake teams can audit where demand originated.
Variants§
WebsiteForm
Lead originated from a website form and may be routed to intake follow-up.
Phone
Lead originated from a phone call or voicemail that staff may need to summarize or return.
Sms
Lead originated from SMS and should respect texting consent and response boundaries.
Lead originated from email and can support draft replies after staff-safe triage.
SocialMedia
Lead originated from social media and may need attribution or identity verification.
LocalReferral
Local referral name staff can verify before attributing the lead source.
Fields
source_name: SourceNameReferral source name preserved for staff attribution and deduplication.
Campaign
Contact or display name used by staff.
Fields
name: CampaignNameCampaign name preserved for marketing attribution and follow-up reporting.