• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Model/ActivityPingQueueTable.php
  • Класс: Bitrix\Crm\Model\ActivityPingQueueTable
  • Вызов: ActivityPingQueueTable::getMap
static function getMap(): array
{
	return [
		(new IntegerField('ID'))
			->configurePrimary()
			->configureAutocomplete(),
		(new IntegerField('ACTIVITY_ID'))
			->configureRequired(),
		(new DatetimeField('PING_DATETIME'))
			->configureDefaultValue(static fn(): DateTime => new DateTime())
			->configureRequired(),
	];
}