@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
14 lines (13 loc) • 466 B
text/typescript
/** Details of the permission. */
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;
}