@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.
10 lines (9 loc) • 327 B
text/typescript
export interface CreatePermissionHolderRequest {
/** The permission holder type. This must be "Group" or "AccountId". */
type: 'Group' | 'AccountId' | string;
/**
* The permission holder value. This must be a group name if the type is "Group" or an account ID if the type is
* "AccountId".
*/
value: string;
}