• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/webhook/payload/item.php
  • Класс: BitrixSeoWebHookPayloadItem
  • Вызов: Item::set
public function set($key, $value)
{
	if (!array_key_exists($key, $this->data))
	{
		throw new ArgumentException("Unknown key `$key`.");
	}

	$this->data[$key] = $value;
	return $this;
}