• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/automation/target/basetarget.php
  • Класс: Bitrix\Crm\Automation\Target\BaseTarget
  • Вызов: BaseTarget::setEntityField
public function setEntityField($field, $value)
{
	if ($this->entity === null)
	{
		throw new InvalidOperationException('Entity must be set by setEntity method.');
	}

	$this->entity[$field] = $value;
}