• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Model/FieldMultiPhoneCountryTable.php
  • Класс: Bitrix\Crm\Model\FieldMultiPhoneCountryTable
  • Вызов: FieldMultiPhoneCountryTable::getMap
static function getMap(): array
{
	return [
		(new IntegerField('ID'))
			->configurePrimary()
			->configureAutocomplete(),
		(new IntegerField('FM_ID'))
			->configureRequired(),
		(new StringField('COUNTRY_CODE'))
			->configureRequired()
			->configureSize(2),
	];
}