• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/Param.php
  • Класс: BitrixImV2MessageParam
  • Вызов: Param::toRestFormat
public function toRestFormat()
{
	switch ($this->type)
	{
		case self::TYPE_BOOL:
			return $this->getValue() ? 'Y' : 'N';

		case self::TYPE_INT:
			return (string)$this->getValue();

		case self::TYPE_STRING:
		default:
			return $this->getValue();

	}
}