> For the complete documentation index, see [llms.txt](https://developers.polymath.network/polymesh-sdk-api-reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.polymath.network/polymesh-sdk-api-reference/docs-alpha/interfaces/types.checkpermissionsresult.md).

# types.CheckPermissionsResult

[@polymeshassociation/polymesh-sdk](/polymesh-sdk-api-reference/docs-alpha/classes.md) / [Modules](/polymesh-sdk-api-reference/docs-alpha/modules.md) / [types](/polymesh-sdk-api-reference/docs-alpha/modules-1/types.md) / CheckPermissionsResult

## Interface: CheckPermissionsResult\<Type>

[types](/polymesh-sdk-api-reference/docs-alpha/modules-1/types.md).CheckPermissionsResult

Result of a `checkPermissions` call. If `Type` is `Account`, represents whether the Account has all the necessary secondary key Permissions. If `Type` is `Identity`, represents whether the Identity has all the necessary external agent Permissions

### Type parameters

| Name   | Type                                                                                     |
| ------ | ---------------------------------------------------------------------------------------- |
| `Type` | extends [`SignerType`](/polymesh-sdk-api-reference/docs-alpha/enums/types.signertype.md) |

### Table of contents

#### Properties

* [message](#message)
* [missingPermissions](#missingpermissions)
* [result](#result)

### Properties

#### message

• `Optional` **message**: `string`

optional message explaining the reason for failure in special cases

**Defined in**

[types/index.ts:1008](https://github.com/PolymathNetwork/polymesh-sdk/blob/31dfa0dc/src/types/index.ts#L1008)

***

#### missingPermissions

• `Optional` **missingPermissions**: `Type` extends [`Account`](/polymesh-sdk-api-reference/docs-alpha/enums/types.signertype.md#account) ? [`SimplePermissions`](/polymesh-sdk-api-reference/docs-alpha/interfaces/types.simplepermissions.md) : `null` | `TxTag`\[]

required permissions which the signer *DOESN'T* have. Only present if `result` is `false`

**Defined in**

[types/index.ts:1000](https://github.com/PolymathNetwork/polymesh-sdk/blob/31dfa0dc/src/types/index.ts#L1000)

***

#### result

• **result**: `boolean`

whether the signer complies with the required permissions or not

**Defined in**

[types/index.ts:1004](https://github.com/PolymathNetwork/polymesh-sdk/blob/31dfa0dc/src/types/index.ts#L1004)
