1# RecoverableApplicationInfo (System API) 2 3The **RecoverableApplicationInfo** module defines the information about a preinstalled application that can be restored after being uninstalled. The information can be obtained through [bundleManager.getRecoverableApplicationInfo](js-apis-bundleManager.md). 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> 9> The APIs provided by this module are system APIs. 10 11## RecoverableApplicationInfo 12 13Defines the information about a preinstalled application that can be restored after being uninstalled. 14 15**System API**: This is a system API. 16 17**System capability**: SystemCapability.BundleManager.BundleFramework.Core 18 19| Name | Type | Read-Only| Optional| Description | 20| ---------------- | ------------------------------ | ---- | ---- | ---------------------- | 21| bundleName | string | Yes | No | Bundle name. | 22| moduleName | string | Yes | No | Module name.| 23| labelId | number | Yes | No | ID of the module label. | 24| iconId | number | Yes | No | ID of the module icon. | 25| systemApp | boolean | Yes | No | Whether the application is a system application.| 26| bundleType |[BundleType](js-apis-bundleManager.md#bundletype) | Yes | No | Bundle type, which can be **APP** (application) or **ATOMIC_SERVICE** (atomic service). | 27| codePaths | Array\<string> | Yes | No | Installation directory of the application. | 28