# AutoFillType (System API) AutoFillType enumerates the types of elements to be automatically filled in. > **NOTE** > > 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. > The APIs of this module can be used only in the stage model. > The APIs provided by this module are system APIs. ## Modules to Import ```ts import { autoFillManager } from '@kit.AbilityKit'; ``` ## AutoFillType **System API**: This is a system API. **System capability**: SystemCapability.Ability.AbilityRuntime.AbilityCore | Name | Value | Description | | -------------- | --- | --------------------------------- | | UNSPECIFIED | 0 | Undefined type. | | PASSWORD | 1 | Password. | | USER_NAME | 2 | Username. | | NEW_PASSWORD | 3 | New password. | | FULL_STREET_ADDRESS12+ | 4 | Detailed address with street information.| | HOUSE_NUMBER12+ | 5 | House number.| | DISTRICT_ADDRESS12+ | 6 | District.| | CITY_ADDRESS12+ | 7 | City.| | PROVINCE_ADDRESS12+ | 8 | Province.| | COUNTRY_ADDRESS12+ | 9 | Country/Region.| | PERSON_FULL_NAME12+ | 10 | Full name.| | PERSON_LAST_NAME12+ | 11 | Last name.| | PERSON_FIRST_NAME12+ | 12 | First name.| | PHONE_NUMBER12+ | 13 | Mobile number.| | PHONE_COUNTRY_CODE12+ | 14 | Country/Region code.| | FULL_PHONE_NUMBER12+ | 15 | Mobile number with the country/region code.| | EMAIL_ADDRESS12+ | 16 | Email address.| | BANK_CARD_NUMBER12+ | 17 | Bank card number.| | ID_CARD_NUMBER12+ | 18 | ID card number.| | NICKNAME12+ | 24 | Nickname.| | DETAIL_INFO_WITHOUT_STREET12+ | 25 | Detailed address without street information.| | FORMAT_ADDRESS12+ | 26 | Standard address.| | PASSPORT_NUMBER18+ | 27 | Passport number.| | VALIDITY18+ | 28 | Validity period of the passport.| | ISSUE_AT18+ | 29 | Location where the passport was issued.| | ORGANIZATION18+ | 30 | Invoice title.| | TAX_ID18+ | 31 | Tax ID.| | ADDRESS_CITY_AND_STATE18+ | 32 | Location (city and state).| | FLIGHT_NUMBER18+ | 33 | Flight number.| | LICENSE_NUMBER18+ | 34 | Driver's license number.| | LICENSE_FILE_NUMBER18+ | 35 | Driver's license file number.| | LICENSE_PLATE18+ | 36 | License plate.| | ENGINE_NUMBER18+ | 37 | Vehicle engine number.| | LICENSE_CHASSIS_NUMBER18+ | 38 | Chassis number (VIN) of a vehicle.|