# 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. |