• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/model/messageuuid.php
  • Класс: BitrixImModelMessageUuidTable
  • Вызов: MessageUuidTable::getMap
static function getMap(): array
{
	return [
		new StringField(
			'UUID',
			[
				'primary' => true,
				'required' => true,
				'size' => 36
			]
		),
		new IntegerField('MESSAGE_ID'),
		new DatetimeField(
			'DATE_CREATE',
			[
				'required' => true,
			]
		),
	];
}