• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/apauth/password.php
  • Класс: BitrixRestAPAuthPasswordTable
  • Вызов: PasswordTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'USER_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'PASSWORD' => array(
			'data_type' => 'string',
			'required' => true,
		),
		'ACTIVE' => array(
			'data_type' => 'boolean',
			'values' => array(static::INACTIVE, static::ACTIVE),
		),
		'TITLE' => array(
			'data_type' => 'string',
		),
		'COMMENT' => array(
			'data_type' => 'string',
		),
		'DATE_CREATE' => array(
			'data_type' => 'datetime',
		),
		'DATE_LOGIN' => array(
			'data_type' => 'datetime',
		),
		'LAST_IP' => array(
			'data_type' => 'string',
		),
	);
}