1# PermissionRequestResult 2 3> **NOTE** 4> 5> The initial APIs of this module are supported since API 9. Newly added APIs will be marked with a superscript to indicate their earliest API version. 6 7Provides the permission request result. 8 9## Modules to Import 10 11```js 12import Ability from '@ohos.application.Ability' 13``` 14 15 16## Attributes 17 18**System capability**: SystemCapability.Ability.AbilityRuntime.Core 19 20| Name| Type| Readable| Writable| Description| 21| -------- | -------- | -------- | -------- | -------- | 22| permissions | Array<string> | Yes| No| Permissions requested.| 23| authResults | Array<number> | Yes| No| Whether the requested permissions are granted or denied. The value **0** means that the requests permissions are granted, and **-1** means the opposite. | 24