@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.
20 lines (19 loc) • 660 B
text/typescript
export interface GetMyPermissions {
/** The key of project. Ignored if `projectId` is provided. */
projectKey?: string;
/** The ID of project. */
projectId?: string;
/** The key of the issue. Ignored if `issueId` is provided. */
issueKey?: string;
/** The ID of the issue. */
issueId?: string;
/**
* A list of permission keys. (Required) This parameter accepts a comma-separated list. To get the list of available
* permissions, use [Get all permissions](#api-rest-api-2-permissions-get).
*/
permissions?: string;
projectUuid?: string;
projectConfigurationUuid?: string;
/** The ID of the comment. */
commentId?: string;
}