• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/Params.php
  • Класс: BitrixImV2MessageParams
  • Вызов: Params::get
public function get(string $paramName): MessageParameter
{
	if (!isset($this[$paramName]))// lazyload
	{
		$this[$paramName] = self::create($paramName);
	}

	return $this[$paramName];
}