I have implemented below code to create records (leads) in CRM
$record->addFieldValue(Leads::LeadSource(), new Choice('Employee Referral'));
$record->addFieldValue(Leads::Industry(), new Choice('Information Technology (IT)');
Leads are successfully added in CRM, but these Choice Fields => Industry and Lead Source are showing empty in CRM.
What will be solution to this issue?