• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/model/itemhistoryfieldtable.php
  • Класс: BitrixRpaModelItemHistoryFieldTable
  • Вызов: ItemHistoryFieldTable::getMap
static function getMap(): array
{
	return [
		(new ORMFieldsIntegerField('ID'))
			->configurePrimary()
			->configureAutocomplete(),
		(new ORMFieldsIntegerField('ITEM_HISTORY_ID'))
			->configureRequired(),
		(new ORMFieldsRelationsReference(
			'ITEM_HISTORY',
			ItemHistoryTable::class,
			['=this.ITEM_HISTORY_ID' => 'ref.ID'])),
		(new ORMFieldsStringField('FIELD_NAME'))
			->configureRequired(),
	];
}