/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface RestrictedPermission { /** * The ID of the permission. Either `id` or `key` must be specified. Use [Get all permissions](#api-rest-api-3-permissions-get) to get the list of permissions. */ id?: string; /** * The key of the permission. Either `id` or `key` must be specified. Use [Get all permissions](#api-rest-api-3-permissions-get) to get the list of permissions. */ key?: string; [x: string]: any; } //# sourceMappingURL=RestrictedPermission.d.ts.map