1# AutoFillType (System API)
2
3AutoFillType enumerates the types of elements to be automatically filled in.
4
5> **NOTE**
6>
7> The initial APIs of this module are supported since API version 11. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8> The APIs of this module can be used only in the stage model.
9> The APIs provided by this module are system APIs.
10
11## Modules to Import
12
13```ts
14import { autoFillManager } from '@kit.AbilityKit';
15```
16
17## AutoFillType
18
19**System API**: This is a system API.
20
21**System capability**: SystemCapability.Ability.AbilityRuntime.AbilityCore
22
23| Name          | Value | Description                              |
24| -------------- | --- | --------------------------------- |
25| UNSPECIFIED      | 0   | Undefined type.                        |
26| PASSWORD      | 1   | Password.                    |
27| USER_NAME     | 2   | Username.                    |
28| NEW_PASSWORD     | 3   | New password.                    |
29| FULL_STREET_ADDRESS<sup>12+</sup>        | 4    | Detailed address with street information. |
30| HOUSE_NUMBER<sup>12+</sup>               | 5    | House number. |
31| DISTRICT_ADDRESS<sup>12+</sup>           | 6    | District. |
32| CITY_ADDRESS<sup>12+</sup>               | 7    | City. |
33| PROVINCE_ADDRESS<sup>12+</sup>           | 8    | Province. |
34| COUNTRY_ADDRESS<sup>12+</sup>            | 9    | Country/Region. |
35| PERSON_FULL_NAME<sup>12+</sup>           | 10   | Full name. |
36| PERSON_LAST_NAME<sup>12+</sup>           | 11   | Last name. |
37| PERSON_FIRST_NAME<sup>12+</sup>          | 12   | First name. |
38| PHONE_NUMBER<sup>12+</sup>               | 13   | Mobile number. |
39| PHONE_COUNTRY_CODE<sup>12+</sup>         | 14   | Country/Region code. |
40| FULL_PHONE_NUMBER<sup>12+</sup>          | 15   | Mobile number with the country/region code. |
41| EMAIL_ADDRESS<sup>12+</sup>              | 16   | Email address. |
42| BANK_CARD_NUMBER<sup>12+</sup>           | 17   | Bank card number. |
43| ID_CARD_NUMBER<sup>12+</sup>             | 18   | ID card number. |
44| NICKNAME<sup>12+</sup>                   | 24   | Nickname. |
45| DETAIL_INFO_WITHOUT_STREET<sup>12+</sup> | 25   | Detailed address without street information. |
46| FORMAT_ADDRESS<sup>12+</sup>             | 26   | Standard address. |
47