• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/Push/Message.php
  • Класс: BitrixMobilePushMessage
  • Вызов: Message::__construct
public function __construct(string $type, string $title = '', string $body = '', array $payload = [])
{
	$this->id = Random::getString(32);
	$this->type = $type;
	$this->title = $title;
	$this->body = $body;
	$this->payload = $payload;
}