• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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| PASSPORT_NUMBER<sup>18+</sup>            | 27   | Passport number.|
48| VALIDITY<sup>18+</sup>                   | 28   | Validity period of the passport.|
49| ISSUE_AT<sup>18+</sup>                   | 29   | Location where the passport was issued.|
50| ORGANIZATION<sup>18+</sup>               | 30   | Invoice title.|
51| TAX_ID<sup>18+</sup>                     | 31   | Tax ID.|
52| ADDRESS_CITY_AND_STATE<sup>18+</sup>     | 32   | Location (city and state).|
53| FLIGHT_NUMBER<sup>18+</sup>              | 33   | Flight number.|
54| LICENSE_NUMBER<sup>18+</sup>             | 34   | Driver's license number.|
55| LICENSE_FILE_NUMBER<sup>18+</sup>        | 35   | Driver's license file number.|
56| LICENSE_PLATE<sup>18+</sup>              | 36   | License plate.|
57| ENGINE_NUMBER<sup>18+</sup>              | 37   | Vehicle engine number.|
58| LICENSE_CHASSIS_NUMBER<sup>18+</sup>     | 38   | Chassis number (VIN) of a vehicle.|
59